camelcase
This commit is contained in:
@@ -12,7 +12,7 @@ Vue.filter("checkSecurityDisabled", function (key: string): boolean {
|
||||
return true;
|
||||
}
|
||||
|
||||
return !securityFunction.Enabled;
|
||||
return !securityFunction.enabled;
|
||||
});
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ Vue.filter("checkSecurityEnabled", function (key: string): boolean {
|
||||
return false;
|
||||
}
|
||||
|
||||
return securityFunction.Enabled;
|
||||
return securityFunction.enabled;
|
||||
});
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ Vue.mixin({
|
||||
return false;
|
||||
}
|
||||
|
||||
return securityFunction.Enabled;
|
||||
return securityFunction.enabled;
|
||||
},
|
||||
|
||||
checkSecurityDisabled(key: string): boolean {
|
||||
@@ -59,7 +59,7 @@ Vue.mixin({
|
||||
return true;
|
||||
}
|
||||
|
||||
return !securityFunction.Enabled;
|
||||
return !securityFunction.enabled;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -90,8 +90,8 @@ export default class AppHeader extends Vue {
|
||||
}
|
||||
|
||||
public manageClick(btn: buttonStatus) {
|
||||
if (btn.Clickable)
|
||||
Hub.Current.sendPowerCommand(btn.Id);
|
||||
if (btn.clickable)
|
||||
Hub.Current.sendPowerCommand(btn.id);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user