EM-60 Additional changes

This commit is contained in:
saifullah-N
2023-01-22 09:11:33 +05:30
parent f632293aca
commit ed1a72479a
3 changed files with 5 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ module.exports = {
computed: {
has_user_value: function() {
const type = this.model["reg-type"];
return type.indexOf("write") != -1 || type.indexOf("fixed") != -1;
return type.includes("write") || type.includes("fixed") || type.includes("scaled");
}
},