Skip to content

Commit c57352e

Browse files
authored
🔀 Merge pull request gchq#345 from olearycrew/344-allow-insecure-type-issue
String to Bool for statusCheckAllowInsecure on save Fixes gchq#344
2 parents 41cdc39 + 02180c5 commit c57352e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/InteractiveEditor/EditItem.vue

+3
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@ export default {
227227
};
228228
if (newItem.tags) newItem.tags = strToTags(newItem.tags);
229229
if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck);
230+
if (newItem.statusCheckAllowInsecure) {
231+
newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure);
232+
}
230233
// if (newItem.hotkey) newItem.hotkey = parseInt(newItem.hotkey, 10);
231234
return newItem;
232235
},

0 commit comments

Comments
 (0)