Skip to content

Commit 4ae8063

Browse files
committed
hide "hang tight" notification for orgs
1 parent a890714 commit 4ae8063

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/directives/components/notifications/viewNotifications.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
.grid-block.vertical.noscroll(
1212
hang-tight
1313
instance = "dataInstance.data.instance"
14-
ng-if = "CI.showHangTightMessage()"
14+
ng-if = "CI.showHangTightMessage() && !$root.featureFlags.demoPersonalOnly"
1515
)

client/templates/viewInstance.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
ng-if = "\
3333
(dataInstance.data.showUpdatingMessage || dataInstance.data.showUpdatedMessage) ||\
3434
dataInstance.data.instance.isMigrating() ||\
35-
CI.showHangTightMessage()\
35+
(CI.showHangTightMessage() && !$root.featureFlags.demoPersonalOnly)\
3636
"
3737
ng-include = "'viewNotifications'"
3838
)

0 commit comments

Comments
 (0)