From a6581e0220851b54a3af0ccdc694e40260706758 Mon Sep 17 00:00:00 2001 From: LH Date: Sat, 13 May 2023 15:59:55 +0200 Subject: [PATCH] small usability fix that separates the items with a space at the frontend --- seesaw/public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seesaw/public/script.js b/seesaw/public/script.js index 9b7ee28..0d6613d 100644 --- a/seesaw/public/script.js +++ b/seesaw/public/script.js @@ -177,7 +177,7 @@ $(function() { registerEvent('item.update_name', function(msg) { // item_id, new_name // if (msg.session_id && msg.session_id != conn.socket.sessionid) return; - $('#item-' + msg.item_id + ' h3 .name').text(msg.new_name); + $('#item-' + msg.item_id + ' h3 .name').text(msg.new_name.replace("\0", " ")); }); registerEvent('item.complete', function(msg) { // pipeline_id, item_id