From fe0fcb0e106751a159040470c2c95ef204cc1f05 Mon Sep 17 00:00:00 2001
From: Patrick Jentsch
Date: Mon, 27 May 2024 09:24:40 +0200
Subject: [PATCH] fix job status notifications
---
app/static/js/app.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/static/js/app.js b/app/static/js/app.js
index 2dad7935..0cf56a5d 100644
--- a/app/static/js/app.js
+++ b/app/static/js/app.js
@@ -95,7 +95,7 @@ nopaque.App = class App {
.filter((operation) => {return subRegExp.test(operation.path);});
for (let operation of subFilteredPatch) {
let [match, userId, jobId] = operation.path.match(subRegExp);
- this.flash(`[${this.data.users[userId].jobs[jobId].title}] New status: `, 'job');
+ this.flash(`[${this.data.users[userId].jobs[jobId].title}] New status: `, 'job');
}
// Apply Patch