diff --git a/modules/ticket/front/summary/index.html b/modules/ticket/front/summary/index.html
index bc75c2cc7..6c25f2665 100644
--- a/modules/ticket/front/summary/index.html
+++ b/modules/ticket/front/summary/index.html
@@ -19,7 +19,11 @@
ng-click="$ctrl.setOkState()"
vn-tooltip="Change ticket state to 'Ok'">
-
+
diff --git a/modules/ticket/front/summary/index.js b/modules/ticket/front/summary/index.js
index 714460221..5887be153 100644
--- a/modules/ticket/front/summary/index.js
+++ b/modules/ticket/front/summary/index.js
@@ -40,6 +40,11 @@ class Controller extends Summary {
});
}
+ get isTicketModule() {
+ const path = this.$state.getCurrentPath()[1];
+ return path.state.name === 'ticket';
+ }
+
get isEditable() {
try {
return !this.ticket.ticketState.state.alertLevel;