From 92d2e4b3a96c43da3d3f39381e67e23e3842bb74 Mon Sep 17 00:00:00 2001 From: aspen Date: Thu, 11 Sep 2025 07:01:12 +1200 Subject: [PATCH] Ensures hidden property is properly converted from string input to boolean value when saving --- 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 d8c0be0a..edd908eb 100644 --- a/src/components/InteractiveEditor/EditItem.vue +++ b/src/components/InteractiveEditor/EditItem.vue @@ -240,6 +240,7 @@ export default { return str === 'true'; }; if (newItem.tags) newItem.tags = strToTags(newItem.tags); + if (newItem.hidden !== undefined) newItem.hidden = strToBool(newItem.hidden); if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck); if (newItem.statusCheckAllowInsecure) { newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure);