fix
This commit is contained in:
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+67
-67
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 }
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user