diff --git a/modules/dynamic/editors/religions-editor.js b/modules/dynamic/editors/religions-editor.js
index 94abd84e..46e50f24 100644
--- a/modules/dynamic/editors/religions-editor.js
+++ b/modules/dynamic/editors/religions-editor.js
@@ -23,7 +23,7 @@ export function open() {
function insertEditorHtml() {
const editorHtml = /* html */ `
- `;
}
@@ -260,7 +258,7 @@ function religionsEditorAddLines() {
$body.querySelectorAll("div > span.icon-arrows-cw").forEach(el => el.on("click", regenerateDeity));
$body.querySelectorAll("div > div.religionPopulation").forEach(el => el.on("click", changePopulation));
$body.querySelectorAll("div > select.religionExtent").forEach(el => el.on("change", religionChangeExtent));
- $body.querySelectorAll("div > input.religionExpan").forEach(el => el.on("change", religionChangeExpansionism));
+ $body.querySelectorAll("div > input.religionExpantion").forEach(el => el.on("change", religionChangeExpansionism));
$body.querySelectorAll("div > span.icon-trash-empty").forEach(el => el.on("click", religionRemovePrompt));
$body.querySelectorAll("div > span.icon-lock").forEach($el => $el.on("click", updateLockStatus));
$body.querySelectorAll("div > span.icon-lock-open").forEach($el => $el.on("click", updateLockStatus));
@@ -282,25 +280,27 @@ function getTypeOptions(type) {
function getExpansionColumns(r) {
if (r.type === "Folk")
- return `
- culture
-
-
- `;
- else
- return `
-
- `;
+ return /* html */ `
+
+ culture
+
+ `;
+
+ return /* html */ `
+
+
+
+ `;
}
function getExtentOptions(type) {