diff options
author | Jose Ivan Vargas Lopez <jvargas@gitlab.com> | 2017-11-23 07:52:15 +0000 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2017-11-23 07:52:15 +0000 |
commit | e882455a9d5107f143ad62ce4a14792277b9fdcd (patch) | |
tree | 2ea714c5ceca78f52ad3f079d83f76d851cceecc /app/assets/javascripts/groups | |
parent | 9fefb6c2be1e9772599aa376ae8ae37241ace0c6 (diff) | |
download | gitlab-ce-e882455a9d5107f143ad62ce4a14792277b9fdcd.tar.gz |
Change star, filter and settings icons to the their sprite based replacements
Diffstat (limited to 'app/assets/javascripts/groups')
-rw-r--r-- | app/assets/javascripts/groups/components/item_actions.vue | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/assets/javascripts/groups/components/item_actions.vue b/app/assets/javascripts/groups/components/item_actions.vue index 7eff19e2e5a..09cb79c1afd 100644 --- a/app/assets/javascripts/groups/components/item_actions.vue +++ b/app/assets/javascripts/groups/components/item_actions.vue @@ -4,9 +4,11 @@ import tooltip from '../../vue_shared/directives/tooltip'; import PopupDialog from '../../vue_shared/components/popup_dialog.vue'; import eventHub from '../event_hub'; import { COMMON_STR } from '../constants'; +import Icon from '../../vue_shared/components/icon.vue'; export default { components: { + Icon, PopupDialog, }, directives: { @@ -63,9 +65,9 @@ export default { :aria-label="editBtnTitle" data-container="body" class="edit-group btn no-expand"> - <i - class="fa fa-cogs" - aria-hidden="true"/> + <icon + name="settings"> + </icon> </a> <a v-tooltip |