Skip to content

Commit 30923ff

Browse files
small change
1 parent b467c49 commit 30923ff

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

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.b7eec0ec.css",
4-
"main.js": "/static/static/js/main.c9e7ea47.js",
4+
"main.js": "/static/static/js/main.b95f4ece.js",
55
"static/media/roboto-all-500-normal.woff": "/static/static/media/roboto-all-500-normal.0ab669b7a0d19b178f57.woff",
66
"static/media/roboto-all-700-normal.woff": "/static/static/media/roboto-all-700-normal.a457fde362a540fcadff.woff",
77
"static/media/roboto-all-400-normal.woff": "/static/static/media/roboto-all-400-normal.c5d001fa922fa66a147f.woff",
@@ -28,10 +28,10 @@
2828
"static/media/roboto-greek-ext-700-normal.woff2": "/static/static/media/roboto-greek-ext-700-normal.bd9854c751441ccc1a70.woff2",
2929
"index.html": "/static/index.html",
3030
"main.b7eec0ec.css.map": "/static/static/css/main.b7eec0ec.css.map",
31-
"main.c9e7ea47.js.map": "/static/static/js/main.c9e7ea47.js.map"
31+
"main.b95f4ece.js.map": "/static/static/js/main.b95f4ece.js.map"
3232
},
3333
"entrypoints": [
3434
"static/css/main.b7eec0ec.css",
35-
"static/js/main.c9e7ea47.js"
35+
"static/js/main.b95f4ece.js"
3636
]
3737
}
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.c9e7ea47.js"></script><link href="/static/static/css/main.b7eec0ec.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.b95f4ece.js"></script><link href="/static/static/css/main.b7eec0ec.css" rel="stylesheet"></head><body><div id="root"></div></body></html>

core/pioreactor/web/static/static/js/main.c9e7ea47.js renamed to core/pioreactor/web/static/static/js/main.b95f4ece.js

Lines changed: 3 additions & 3 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.c9e7ea47.js.LICENSE.txt renamed to core/pioreactor/web/static/static/js/main.b95f4ece.js.LICENSE.txt

File renamed without changes.

core/pioreactor/web/static/static/js/main.c9e7ea47.js.map renamed to core/pioreactor/web/static/static/js/main.b95f4ece.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/components/ActionDosingForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function ActionPumpForm(props) {
4444
const hasDurationInput = duration !== EMPTYSTATE;
4545
const hasSafetyThreshold = isAddAction && currentVolumeMl != null && thresholdMl != null;
4646
const hardRemainingMl = hasSafetyThreshold ? thresholdMl - currentVolumeMl : null;
47-
const exceedsSafetyThreshold = hasSafetyThreshold && isVolumeMode && parsedML != null && parsedML >= hardRemainingMl;
47+
const exceedsSafetyThreshold = hasSafetyThreshold && isVolumeMode && parsedML != null && parsedML > hardRemainingMl;
4848

4949
function onSubmit(e) {
5050
e.preventDefault();

0 commit comments

Comments
 (0)