mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-23 13:45:33 +02:00
🚨 Fixes DeepScan logic warning
This commit is contained in:
parent
d60060edfb
commit
f1239f3aea
@ -232,7 +232,7 @@ export default {
|
|||||||
if (str === undefined) return undefined;
|
if (str === undefined) return undefined;
|
||||||
return str === 'true';
|
return str === 'true';
|
||||||
};
|
};
|
||||||
if (newItem.tags) newItem.tags = newItem.tags ? strToTags(newItem.tags) : [];
|
if (newItem.tags) newItem.tags = strToTags(newItem.tags);
|
||||||
if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck);
|
if (newItem.statusCheck) newItem.statusCheck = strToBool(newItem.statusCheck);
|
||||||
if (newItem.statusCheckAllowInsecure) {
|
if (newItem.statusCheckAllowInsecure) {
|
||||||
newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure);
|
newItem.statusCheckAllowInsecure = strToBool(newItem.statusCheckAllowInsecure);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user