diff options
author | Mike Greiling <mike@pixelcog.com> | 2019-08-23 22:01:11 +0000 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2019-08-23 22:01:11 +0000 |
commit | a93612aa5fab7d70f0b6165856402ac53ab18faf (patch) | |
tree | 3c386f9d4b594f4ca2734b89d822fa2f909effba /app | |
parent | 4c8a656f7b89314011825931a4ecc682ab78c088 (diff) | |
parent | 9ad0a8ad6259fb44876443d8bbf692e291165376 (diff) | |
download | gitlab-ce-a93612aa5fab7d70f0b6165856402ac53ab18faf.tar.gz |
Merge branch 'fe-fix-issuable-sidebar-icon-of-notification-disabled' into 'master'
Fix issuable sidebar icon of notification disabled
See merge request gitlab-org/gitlab-ce!32134
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/notifications_helper.rb | 4 | ||||
-rw-r--r-- | app/views/shared/issuable/_sidebar.html.haml | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/app/helpers/notifications_helper.rb b/app/helpers/notifications_helper.rb index 5678304ffcf..8855e0cdd70 100644 --- a/app/helpers/notifications_helper.rb +++ b/app/helpers/notifications_helper.rb @@ -106,9 +106,9 @@ module NotificationsHelper end end - def notification_setting_icon(notification_setting) + def notification_setting_icon(notification_setting = nil) sprite_icon( - notification_setting.disabled? ? "notifications-off" : "notifications", + !notification_setting.present? || notification_setting.disabled? ? "notifications-off" : "notifications", css_class: "icon notifications-icon js-notifications-icon" ) end diff --git a/app/views/shared/issuable/_sidebar.html.haml b/app/views/shared/issuable/_sidebar.html.haml index aea09bf8d4d..837707707a9 100644 --- a/app/views/shared/issuable/_sidebar.html.haml +++ b/app/views/shared/issuable/_sidebar.html.haml @@ -139,7 +139,9 @@ - if signed_in - if issuable_sidebar[:project_emails_disabled] .block.js-emails-disabled - = notification_description(:owner_disabled) + .sidebar-collapsed-icon.has-tooltip{ title: notification_description(:owner_disabled), data: { placement: "left", container: "body", boundary: 'viewport' } } + = notification_setting_icon + .hide-collapsed= notification_description(:owner_disabled) - else .js-sidebar-subscriptions-entry-point |