From 917608c68048934cadf3b651ce92086546235fdc Mon Sep 17 00:00:00 2001 From: Brendan O'Leary Date: Sun, 28 Nov 2021 23:20:07 -0500 Subject: [PATCH] String to Bool for statusCheckAllowInsecure on save --- src/components/InteractiveEditor/EditItem.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/InteractiveEditor/EditItem.vue b/src/components/InteractiveEditor/EditItem.vue index e924f3ef..c5139dbd 100644 --- a/src/components/InteractiveEditor/EditItem.vue +++ b/src/components/InteractiveEditor/EditItem.vue @@ -227,6 +227,7 @@ export default { }; if (newItem.tags) newItem.tags = strToTags(newItem.tags); if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck); + if (newItem.statusCheckAllowInsecure) newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure); // if (newItem.hotkey) newItem.hotkey = parseInt(newItem.hotkey, 10); return newItem; },