Skip to content

Commit

Permalink
No message
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Aschmann committed Jul 12, 2022
1 parent 49b6ba8 commit 3f3d74f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions frontend/build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"files": {
"main.css": "/static/css/main.da2c7666.css",
"main.js": "/static/js/main.93216d0c.js",
"main.js": "/static/js/main.75c3e0d3.js",
"static/js/787.d8c6ec95.chunk.js": "/static/js/787.d8c6ec95.chunk.js",
"static/media/logo-text.svg": "/static/media/logo-text.fe8e443ef79ca7b8079361f26216beef.svg",
"static/media/logo.svg": "/static/media/logo.f41ea7d84683be6a9878b9290883ac58.svg",
"index.html": "/index.html",
"main.da2c7666.css.map": "/static/css/main.da2c7666.css.map",
"main.93216d0c.js.map": "/static/js/main.93216d0c.js.map",
"main.75c3e0d3.js.map": "/static/js/main.75c3e0d3.js.map",
"787.d8c6ec95.chunk.js.map": "/static/js/787.d8c6ec95.chunk.js.map"
},
"entrypoints": [
"static/css/main.da2c7666.css",
"static/js/main.93216d0c.js"
"static/js/main.75c3e0d3.js"
]
}
2 changes: 1 addition & 1 deletion frontend/build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Monitor websites with email notifications"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Changd - Monitor the web</title><script defer="defer" src="/static/js/main.93216d0c.js"></script><link href="/static/css/main.da2c7666.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Monitor websites with email notifications"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>Changd - Monitor the web</title><script defer="defer" src="/static/js/main.75c3e0d3.js"></script><link href="/static/css/main.da2c7666.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
3 changes: 3 additions & 0 deletions frontend/build/static/js/main.75c3e0d3.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions frontend/build/static/js/main.93216d0c.js

This file was deleted.

4 changes: 3 additions & 1 deletion frontend/src/pages/saas/jobs/jobAdd/JobAdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ class JobDetail extends Component {
}

handleChange = (event) => {
/* TO DO: Not working correctly, moves cursor out of input box
if (event.target.name === 'url') {
var valid = validURL(event.target.value);
if (valid) {
Expand All @@ -133,7 +134,8 @@ class JobDetail extends Component {
this.setState({ validUrlStatus: 'error', validUrl: true });
}
}
this.setState({ [event.target.name]: event.target.value })
*/
this.setState({ [event.target.name]: event.target.value });
}

handleSliderChange = (event) => {
Expand Down

0 comments on commit 3f3d74f

Please sign in to comment.