Skip to content

Commit 0d07083

Browse files
Copilotcschleiden
andcommitted
Update home page layout - add Queues heading and move Instances heading down
Co-authored-by: cschleiden <[email protected]>
1 parent 1ba4bc9 commit 0d07083

File tree

7 files changed

+13
-14
lines changed

7 files changed

+13
-14
lines changed

diag/app/build/asset-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"files": {
33
"main.css": "./static/css/main.8b0db0ad.css",
4-
"main.js": "./static/js/main.b95745dd.js",
4+
"main.js": "./static/js/main.05d86c95.js",
55
"index.html": "./index.html",
66
"main.8b0db0ad.css.map": "./static/css/main.8b0db0ad.css.map",
7-
"main.b95745dd.js.map": "./static/js/main.b95745dd.js.map"
7+
"main.05d86c95.js.map": "./static/js/main.05d86c95.js.map"
88
},
99
"entrypoints": [
1010
"static/css/main.8b0db0ad.css",
11-
"static/js/main.b95745dd.js"
11+
"static/js/main.05d86c95.js"
1212
]
1313
}

diag/app/build/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>go-workflows</title><script defer="defer" src="./static/js/main.b95745dd.js"></script><link href="./static/css/main.8b0db0ad.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>go-workflows</title><script defer="defer" src="./static/js/main.05d86c95.js"></script><link href="./static/css/main.8b0db0ad.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

diag/app/build/static/js/main.05d86c95.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

diag/app/build/static/js/main.b95745dd.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

diag/app/src/Home.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,10 @@ function Home() {
3232

3333
return (
3434
<div className="App">
35-
<header className="App-header">
36-
<h2>Instances</h2>
37-
</header>
35+
<h2>Queues</h2>
3836

3937
{stats && (
4038
<div className="mb-3">
41-
<h5>Queue Statistics</h5>
4239
<div className="row">
4340
<div className="col-md-6">
4441
<h6>Workflow Queues</h6>
@@ -64,7 +61,7 @@ function Home() {
6461
</tbody>
6562
</Table>
6663
) : (
67-
<p className="text-muted">No workflow queues with pending tasks</p>
64+
<p className="text-muted">No workflow queues</p>
6865
)}
6966
</div>
7067
<div className="col-md-6">
@@ -91,13 +88,15 @@ function Home() {
9188
</tbody>
9289
</Table>
9390
) : (
94-
<p className="text-muted">No activity queues with pending tasks</p>
91+
<p className="text-muted">No activity queues</p>
9592
)}
9693
</div>
9794
</div>
9895
</div>
9996
)}
10097

98+
<h2 className="mt-4">Instances</h2>
99+
101100
{isLoading && <div>Loading...</div>}
102101

103102
{!isLoading && (

0 commit comments

Comments
 (0)