We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 41cdc39 + 02180c5 commit c57352eCopy full SHA for c57352e
src/components/InteractiveEditor/EditItem.vue
@@ -227,6 +227,9 @@ export default {
227
};
228
if (newItem.tags) newItem.tags = strToTags(newItem.tags);
229
if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck);
230
+ if (newItem.statusCheckAllowInsecure) {
231
+ newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure);
232
+ }
233
// if (newItem.hotkey) newItem.hotkey = parseInt(newItem.hotkey, 10);
234
return newItem;
235
},
0 commit comments