diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js
index 08d195385554f6056bd3aad5df7c7d06573944b0..0b30a912f374326370a638ccbc0963adb82d0dac 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())));