From c0844eeb11cc95b74387aa24757f44c16fe7a93f Mon Sep 17 00:00:00 2001
From: Arkerthan <arkerthan@gmail.com>
Date: Thu, 14 May 2020 11:11:39 +0200
Subject: [PATCH] fix clicking rename multiple times adds a textbox each time

---
 src/js/rulesAssistantOptions.js | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js
index 08d19538555..0b30a912f37 100644
--- a/src/js/rulesAssistantOptions.js
+++ b/src/js/rulesAssistantOptions.js
@@ -66,6 +66,16 @@ globalThis.rulesAssistantOptions = (function() {
 		reload();
 	}
 
+	function rename(container) {
+		let rename = false
+		return () => {
+			if (!rename) {
+				container.appendChild(new RenameField());
+				rename = true;
+			}
+		};
+	}
+
 	function changeName(name) {
 		if (name === current_rule.name) { return; }
 		current_rule.name = name;
@@ -1103,7 +1113,7 @@ globalThis.rulesAssistantOptions = (function() {
 			this.appendChild(new OptionsItem("Apply rules", () => this.appendChild(new ApplicationLog())));
 			this.appendChild(new OptionsItem("Lower Priority", lowerPriority));
 			this.appendChild(new OptionsItem("Higher Priority", higherPriority));
-			this.appendChild(new OptionsItem("Rename", () => this.appendChild(new RenameField())));
+			this.appendChild(new OptionsItem("Rename", rename(this)));
 			this.appendChild(new OptionsItem("Export this rule", () => this.appendChild(new ExportField(current_rule))));
 			this.appendChild(new OptionsItem("Export all rules", () => this.appendChild(new ExportField(...V.defaultRules))));
 			this.appendChild(new OptionsItem("Import rule(s)", () => this.appendChild(new NewRuleField())));
-- 
GitLab