diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-07-17 12:15:45 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-07-17 12:15:45 +0900 |
| commit | 9f9498c4f028ab7cb61b3a73a2bb10b0146ea124 (patch) | |
| tree | 3150704f6c58a0d9a3693b400a6d0a7e574e0f35 /packages | |
| parent | [ci skip] :art: (diff) | |
| download | sharkey-9f9498c4f028ab7cb61b3a73a2bb10b0146ea124.tar.gz sharkey-9f9498c4f028ab7cb61b3a73a2bb10b0146ea124.tar.bz2 sharkey-9f9498c4f028ab7cb61b3a73a2bb10b0146ea124.zip | |
:art:
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/components/MkInviteCode.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkInviteCode.vue b/packages/frontend/src/components/MkInviteCode.vue index 60c57bef08..97bf732356 100644 --- a/packages/frontend/src/components/MkInviteCode.vue +++ b/packages/frontend/src/components/MkInviteCode.vue @@ -45,8 +45,8 @@ </div> </div> <div :class="$style.buttons"> - <MkButton v-if="!invite.used && !isExpired" primary rounded @click="copyInviteCode()">{{ i18n.ts.copy }}</MkButton> - <MkButton v-if="!invite.used || moderator" danger rounded @click="deleteCode()">{{ i18n.ts.delete }}</MkButton> + <MkButton v-if="!invite.used && !isExpired" primary rounded @click="copyInviteCode()"><i class="ti ti-copy"></i> {{ i18n.ts.copy }}</MkButton> + <MkButton v-if="!invite.used || moderator" danger rounded @click="deleteCode()"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton> </div> </div> </MkFolder> |