Skip to content

Commit

Permalink
fix:channel管理者移譲時のポップアップ表示を、username(id名)にしてnullが出ないようにする #34
Browse files Browse the repository at this point in the history
  • Loading branch information
Suzulu-activity committed Sep 16, 2024
1 parent 7e1c4d4 commit f0c833b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/channel-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function transferAdmin() {
os.confirm({
type: 'warning',
title: i18n.ts._channel.transferAdminConfirmTitle,
text: i18n.tsx._channel.transferAdminConfirmDescription({ user: user.name }),
text: i18n.tsx._channel.transferAdminConfirmDescription({ user: user.username }),
}).then(({ canceled }) => {
if (canceled) return;
os.confirm({
Expand Down

0 comments on commit f0c833b

Please sign in to comment.