aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src
diff options
context:
space:
mode:
authorCláudio <claudio.engdist@gmail.com>2021-01-24 08:17:04 -0300
committerCláudio <claudio.engdist@gmail.com>2021-01-24 08:17:04 -0300
commit9ad4469f9b59e7afe5542474f15a34ae4a690561 (patch)
treef40e6bba01666929d9be64db3534f0386751b7e3 /webui/src
parent078c85be4ece0e3d3c1dd9b71c819fa70ea3348b (diff)
downloadgit-bug-9ad4469f9b59e7afe5542474f15a34ae4a690561.tar.gz
Partial commit to #158
- Prettier package update to fix CRLF problem when running on Windows
Diffstat (limited to 'webui/src')
-rw-r--r--webui/src/pages/list/ListQuery.css0
-rw-r--r--webui/src/pages/list/ListQuery.tsx33
2 files changed, 18 insertions, 15 deletions
diff --git a/webui/src/pages/list/ListQuery.css b/webui/src/pages/list/ListQuery.css
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/webui/src/pages/list/ListQuery.css
diff --git a/webui/src/pages/list/ListQuery.tsx b/webui/src/pages/list/ListQuery.tsx
index 7eb6f4c5..f60b6154 100644
--- a/webui/src/pages/list/ListQuery.tsx
+++ b/webui/src/pages/list/ListQuery.tsx
@@ -271,21 +271,24 @@ function ListQuery() {
return (
<Paper className={classes.main}>
<header className={classes.header}>
- <h1>Issues</h1>
- <form onSubmit={formSubmit}>
- <InputBase
- placeholder="Filter"
- value={input}
- onInput={(e: any) => setInput(e.target.value)}
- classes={{
- root: classes.search,
- focused: classes.searchFocused,
- }}
- />
- <button type="submit" hidden>
- Search
- </button>
- </form>
+ <div className="filterissue-container">
+ <h1>Issues</h1>
+ <form onSubmit={formSubmit}>
+ <InputBase
+ placeholder="Filter"
+ value={input}
+ onInput={(e: any) => setInput(e.target.value)}
+ classes={{
+ root: classes.search,
+ focused: classes.searchFocused,
+ }}
+ />
+ <button type="submit" hidden>
+ Search
+ </button>
+ </form>
+ </div>
+ <button className="bt-new-issue">New Issue</button>
</header>
<FilterToolbar query={query} queryLocation={queryLocation} />
{content}