From 99792fa7a8b532680e7bbc6212c061fd6aaf6d48 Mon Sep 17 00:00:00 2001 From: Francesco Date: Fri, 6 Oct 2023 14:11:40 +0200 Subject: [PATCH] UI fix --- src/main/resources/static/js/table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/js/table.js b/src/main/resources/static/js/table.js index 51971b4..7f8ed27 100644 --- a/src/main/resources/static/js/table.js +++ b/src/main/resources/static/js/table.js @@ -9,7 +9,7 @@ function updateBulkActions(table, selected) { class="ui-btn btn btn-secondary ${deleteEnabled === "false" ? 'disable' : ''} " value="Delete">`; } else { - div.innerHTML = `

DELETE not allowed on this table

`; + div.innerHTML = `

DELETE not allowed on this table

`; } }); }