diff options
| author | Filipa Lacerda <filipa@gitlab.com> | 2018-03-16 20:55:05 +0000 |
|---|---|---|
| committer | Filipa Lacerda <filipa@gitlab.com> | 2018-03-16 20:55:05 +0000 |
| commit | bcc04515abcc6ad43675ca06b175050c4a5a4b7f (patch) | |
| tree | 21970b4f1bbc553bff4546e4a466bed27832a2ae /app | |
| parent | f46ae65b980ead4c641fe7e90edc19e0ecdcdc0a (diff) | |
| parent | 1c74f5595f254e2eaeaa9c9fe237832726d56632 (diff) | |
| download | gitlab-ce-bcc04515abcc6ad43675ca06b175050c4a5a4b7f.tar.gz | |
Merge branch 'profile-notifications-dropdown-fix' into 'master'
Fixed profile notifications not being editable
Closes #44198
See merge request gitlab-org/gitlab-ce!17808
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/javascripts/pages/profiles/notifications/show/index.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/assets/javascripts/pages/profiles/notifications/show/index.js b/app/assets/javascripts/pages/profiles/notifications/show/index.js new file mode 100644 index 00000000000..2e24a10fa5c --- /dev/null +++ b/app/assets/javascripts/pages/profiles/notifications/show/index.js @@ -0,0 +1,7 @@ +import NotificationsForm from '../../../../notifications_form'; +import notificationsDropdown from '../../../../notifications_dropdown'; + +document.addEventListener('DOMContentLoaded', () => { + new NotificationsForm(); // eslint-disable-line no-new + notificationsDropdown(); +}); |
