Fikssizes

This commit is contained in:
Alexandre Aubin 2021-03-01 23:55:30 +01:00
parent d7b1f24f1a
commit 9fc2bf150c
3 changed files with 3 additions and 3 deletions

View file

@ -9,8 +9,8 @@
integrity="sha384-cX6t2fHVBGJY7XVcJYPJJJS7nHG0AcC45H//gbb9MZkBxLD4rQ3SQkTYZwxOclNs"> integrity="sha384-cX6t2fHVBGJY7XVcJYPJJJS7nHG0AcC45H//gbb9MZkBxLD4rQ3SQkTYZwxOclNs">
<script defer src="<{ relative_path_to_root }>static/js/fontawesome-all-5-1-0.js" <script defer src="<{ relative_path_to_root }>static/js/fontawesome-all-5-1-0.js"
integrity="sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9"></script> integrity="sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9"></script>
<script src="<{ relative_path_to_root }>static/js/vue-2-5-17.js" <script src="<{ relative_path_to_root }>static/js/vue-2-5-17.min.js"
integrity="sha384-vGq6VlJ/rGDK5hwCZhgtrb5j4nOanwgWgBSe9anrJGQHqCgkBo45u6lAxlVR0U+Q"></script> integrity="sha384-9MzmvphdUvLZJKasjD7VqYE4SqffhZDOwDTMyokP2tx+fjBo59ljvrlgUAaaME44"></script>
<script src="<{ relative_path_to_root }>static/js/jquery-3.3.1.min.js" <script src="<{ relative_path_to_root }>static/js/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="></script> integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="></script>
<script src="<{ relative_path_to_root }>static/js/app.js"></script> <script src="<{ relative_path_to_root }>static/js/app.js"></script>

View file

@ -71,13 +71,13 @@
} else if (action == "update_job") { } else if (action == "update_job") {
for (var i = 0; i < app.jobs.length; ++i) { for (var i = 0; i < app.jobs.length; ++i) {
if (app.jobs[i].id == data.id) { if (app.jobs[i].id == data.id) {
Vue.set(app.jobs, i, data);
if ((app.jobs[i].state !== undefined) && (app.jobs[i].state != data.state)) if ((app.jobs[i].state !== undefined) && (app.jobs[i].state != data.state))
{ {
notify("Job for " + data.name + " is " + data.state); notify("Job for " + data.name + " is " + data.state);
} }
Vue.set(app.jobs, i, data);
break; break;
} }
} }