Compare commits

...

3 Commits

Author SHA1 Message Date
Aria Moradi 202e38871d [RELEASE CI] hotfix 2021-01-22 21:33:54 +03:30
Aria Moradi 3f75b84651 fix button text 2021-01-22 21:33:12 +03:30
Aria Moradi f171b785a0 [RELEASE CI] fix linting error 2021-01-22 21:29:09 +03:30
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ plugins {
id("org.jmailen.kotlinter") version "3.3.0"
}
val TachideskVersion = "v0.1.0"
val TachideskVersion = "v0.1.1"
repositories {
-1
View File
@@ -41,7 +41,6 @@ export default function MangaGrid(props: IProps) {
return <MangaCard manga={it} />;
});
}
return (
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(5, auto)', gridGap: '1em' }}>
+1 -1
View File
@@ -82,7 +82,7 @@ export default function SearchSingle() {
<form className={classes.root} noValidate autoComplete="off">
<TextField inputRef={textInput} error={error} id="standard-basic" label="Search text.." />
<Button variant="contained" color="primary" onClick={() => processInput()}>
Primary
Search
</Button>
</form>
{mangaGrid}