🔀 Merge pull request #345 from olearycrew/344-allow-insecure-type-issue
String to Bool for statusCheckAllowInsecure on save Fixes #344
This commit is contained in:
commit
c57352ecba
1 changed files with 3 additions and 0 deletions
|
|
@ -227,6 +227,9 @@ 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;
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue