This patch adds support for pwncnc

This commit is contained in:
saifullah-N
2023-02-12 14:01:05 +05:30
parent 2baae7965a
commit f0c4579b61
9 changed files with 102 additions and 12 deletions

View File

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