This commit is contained in:
Paolo Possanzini
2018-02-15 15:22:15 +01:00
parent 95745d3a5d
commit b004bbc8a1
4 changed files with 76 additions and 75 deletions
+2 -2
View File
File diff suppressed because one or more lines are too long
+67 -67
View File
File diff suppressed because one or more lines are too long
@@ -56,6 +56,7 @@
<script>
import { AlarmModel } from "src/store";
import { Accordion } from "src/modules/base-components";
import { Hub } from "src/services/hub";
export default {
props: {
alarm: { default: null, type: AlarmModel }
+6 -6
View File
@@ -1,5 +1,5 @@
import AlarmsModelActionsInterface from "../store/alarms.store"
import { AlarmsModelActionsInterface } from "../store/alarms.store"
import { store, alarmsModelActions, machineStatusActions, machineInfoActions, AppModel, appModelActions } from "src/store";
import { alarmDetail } from "src/modules/alarms";
@@ -155,15 +155,15 @@ export class Hub {
}
public RefreshAlarm(id: string) {
this._hub.server.RefreshAlarm(id);
this._hub.server.refreshAlarm(id);
}
public RefreshAllAlarms(){
this._hub.server.RefreshAllAlarms();
public RefreshAllAlarms() {
this._hub.server.refreshAllAlarms();
}
public RecoveryProcedure(id:string){
this._hub.server.RecoveryProcedure(id);
public RecoveryProcedure(id: string) {
this._hub.server.recoveryProcedure(id);
}
public Hello() {