aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/pages
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-03-19 17:04:59 +0100
committerMichael Muré <batolettre@gmail.com>2021-03-19 17:04:59 +0100
commit07e1c45cd70554630640bb1ea25968078a36fd6c (patch)
tree1b604b88932719d219d941333f38f5209f65945a /webui/src/pages
parent0b3acaa3211b1c884bd42f18bf58383343b42bc1 (diff)
downloadgit-bug-07e1c45cd70554630640bb1ea25968078a36fd6c.tar.gz
webui: minor code fixes
Diffstat (limited to 'webui/src/pages')
-rw-r--r--webui/src/pages/list/FilterToolbar.tsx2
-rw-r--r--webui/src/pages/new/NewBugPage.tsx6
2 files changed, 4 insertions, 4 deletions
diff --git a/webui/src/pages/list/FilterToolbar.tsx b/webui/src/pages/list/FilterToolbar.tsx
index e4cd8e6a..74eefe4c 100644
--- a/webui/src/pages/list/FilterToolbar.tsx
+++ b/webui/src/pages/list/FilterToolbar.tsx
@@ -40,7 +40,7 @@ function CountingFilter({ query, children, ...props }: CountingFilterProps) {
variables: { query },
});
- var prefix;
+ let prefix;
if (loading) prefix = '...';
else if (error || !data?.repository) prefix = '???';
// TODO: better prefixes & error handling
diff --git a/webui/src/pages/new/NewBugPage.tsx b/webui/src/pages/new/NewBugPage.tsx
index 39725722..f313ac24 100644
--- a/webui/src/pages/new/NewBugPage.tsx
+++ b/webui/src/pages/new/NewBugPage.tsx
@@ -86,7 +86,7 @@ function NewBugPage() {
}
function isFormValid() {
- return issueTitle.length > 0 && issueComment.length > 0 ? true : false;
+ return issueTitle.length > 0;
}
if (loading) return <div>Loading...</div>;
@@ -119,14 +119,14 @@ function NewBugPage() {
className={classes.greenButton}
variant="contained"
type="submit"
- disabled={isFormValid() ? false : true}
+ disabled={!isFormValid()}
>
Submit new issue
</Button>
</div>
</form>
</Paper>
- <div className={classes.rightSidebar}></div>
+ <div className={classes.rightSidebar} />
</div>
</main>
);