From 82bb667f05f531bc30277f98dbde444e71c75120 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 20 Apr 2024 20:43:19 +0200 Subject: [PATCH] edit window: fixup syntax mis-hap argh, it's was a bit to late for the previous clean-up and I forgot to drop a closing parenthesis after reworking the if expression (and did test again...). Signed-off-by: Thomas Lamprecht --- src/window/Edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window/Edit.js b/src/window/Edit.js index 1c2e63f..c2c36fd 100644 --- a/src/window/Edit.js +++ b/src/window/Edit.js @@ -351,7 +351,7 @@ Ext.define('Proxmox.window.Edit', { me.buttons = [submitBtn]; - if (!me.isCreate && me.showReset)) { + if (!me.isCreate && me.showReset) { me.tools = [resetTool]; }