diff options
author | Christopher Ng <chrng8@gmail.com> | 2021-12-01 00:46:43 +0000 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2021-12-01 01:06:11 +0000 |
commit | 02979809a616a86252b3285709d282e0d70ed94e (patch) | |
tree | 17609592d40b227a101c6f8c7cbaaf534cabf525 /core/src | |
parent | 6ea28a0d7f4dfb3f83a75b7e0b309e9c474133d4 (diff) | |
download | nextcloud-server-02979809a616a86252b3285709d282e0d70ed94e.tar.gz nextcloud-server-02979809a616a86252b3285709d282e0d70ed94e.zip |
Fix profile actions menu
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/views/Profile.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/views/Profile.vue b/core/src/views/Profile.vue index c81f214c7ae..be3867c984e 100644 --- a/core/src/views/Profile.vue +++ b/core/src/views/Profile.vue @@ -93,10 +93,10 @@ </ActionLink> </Actions> <template v-if="otherActions"> - <Actions v-for="action in otherActions" - :key="action.id" + <Actions :force-menu="true"> - <ActionLink + <ActionLink v-for="action in otherActions" + :key="action.id" :class="{ 'icon-invert': colorMainBackground === '#181818' }" :close-after-click="true" :icon="action.icon" |