Skip to content

Commit 13abab1

Browse files
fix charts for xr
1 parent cd4cb1f commit 13abab1

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

core/pioreactor/web/static/asset-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"files": {
33
"main.css": "/static/static/css/main.9c7a48b7.css",
4-
"main.js": "/static/static/js/main.08ed0b4e.js",
4+
"main.js": "/static/static/js/main.dc51389c.js",
55
"static/media/pioreactor_cloud.webp": "/static/static/media/pioreactor_cloud.b15b29e435797dc69d76.webp",
66
"static/media/roboto-all-500-normal.woff": "/static/static/media/roboto-all-500-normal.0ab669b7a0d19b178f57.woff",
77
"static/media/roboto-all-700-normal.woff": "/static/static/media/roboto-all-700-normal.a457fde362a540fcadff.woff",
@@ -30,10 +30,10 @@
3030
"static/media/roboto-greek-ext-700-normal.woff2": "/static/static/media/roboto-greek-ext-700-normal.bd9854c751441ccc1a70.woff2",
3131
"index.html": "/static/index.html",
3232
"main.9c7a48b7.css.map": "/static/static/css/main.9c7a48b7.css.map",
33-
"main.08ed0b4e.js.map": "/static/static/js/main.08ed0b4e.js.map"
33+
"main.dc51389c.js.map": "/static/static/js/main.dc51389c.js.map"
3434
},
3535
"entrypoints": [
3636
"static/css/main.9c7a48b7.css",
37-
"static/js/main.08ed0b4e.js"
37+
"static/js/main.dc51389c.js"
3838
]
3939
}
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"/><link rel="icon" href="/static/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Pioreactor"/><link rel="apple-touch-icon" href="/static/logo192.png"/><link rel="manifest" href="/static/manifest.json"/><script defer="defer" src="/static/static/js/main.08ed0b4e.js"></script><link href="/static/static/css/main.9c7a48b7.css" rel="stylesheet"></head><body><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/static/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Pioreactor"/><link rel="apple-touch-icon" href="/static/logo192.png"/><link rel="manifest" href="/static/manifest.json"/><script defer="defer" src="/static/static/js/main.dc51389c.js"></script><link href="/static/static/css/main.9c7a48b7.css" rel="stylesheet"></head><body><div id="root"></div></body></html>

core/pioreactor/web/static/static/js/main.08ed0b4e.js renamed to core/pioreactor/web/static/static/js/main.dc51389c.js

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

core/pioreactor/web/static/static/js/main.08ed0b4e.js.LICENSE.txt renamed to core/pioreactor/web/static/static/js/main.dc51389c.js.LICENSE.txt

File renamed without changes.

core/pioreactor/web/static/static/js/main.08ed0b4e.js.map renamed to core/pioreactor/web/static/static/js/main.dc51389c.js.map

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

frontend/src/Inventory.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ function WorkerCard({worker, config, leaderVersion}) {
641641
if (leaderVersion && workerVersion !== leaderVersion) {
642642
return (
643643
<UnderlineSpan title={`Not aligned with leader's version, ${leaderVersion}`}>
644-
{workerVersion} <ErrorOutlineIcon sx={{ verticalAlign: "middle", marginLeft: "4px", color: lostRed }} />
644+
{workerVersion} <ErrorOutlineIcon fontSize="small" sx={{ verticalAlign: "middle", marginLeft: "-5px", marginBottom: "3px", color: lostRed }} />
645645
</UnderlineSpan>
646646
);
647647
}

frontend/src/components/Chart.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import utc from 'dayjs/plugin/utc';
2828
// Activate the UTC plugin
2929
dayjs.extend(utc);
3030

31-
const sensorRe = /(.*)-[1234]/;
31+
const sensorRe = /(.*)-([1234])/;
3232

3333
function toArray(thing){
3434
if (Array.isArray(thing)){

0 commit comments

Comments
 (0)