diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2025-10-09 09:29:09 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-09 09:29:09 +0900 |
| commit | 37526de32310bdbf8f4e862fb5a4e4533b4db0ab (patch) | |
| tree | 220f3289ca5e80022bee719529fa3d958b403330 /packages/frontend/src/pages/admin | |
| parent | fix(frontend): バナー画像のサイズがおかしい問題を修正 (#16... (diff) | |
| download | misskey-37526de32310bdbf8f4e862fb5a4e4533b4db0ab.tar.gz misskey-37526de32310bdbf8f4e862fb5a4e4533b4db0ab.tar.bz2 misskey-37526de32310bdbf8f4e862fb5a4e4533b4db0ab.zip | |
fix: aliasesの区切り文字が一致していないのを修正 (#16622)
* fix: aliasesの区切り文字が一致していないのを修正
* fix CHANGELOG.md
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/pages/admin')
| -rw-r--r-- | packages/frontend/src/pages/admin/custom-emojis-manager.local.list.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/admin/custom-emojis-manager.local.list.vue b/packages/frontend/src/pages/admin/custom-emojis-manager.local.list.vue index a380bd133e..cbe863f184 100644 --- a/packages/frontend/src/pages/admin/custom-emojis-manager.local.list.vue +++ b/packages/frontend/src/pages/admin/custom-emojis-manager.local.list.vue @@ -503,7 +503,7 @@ function refreshGridItems() { name: it.name, host: it.host ?? '', category: it.category ?? '', - aliases: it.aliases.join(','), + aliases: it.aliases.join(' '), license: it.license ?? '', isSensitive: it.isSensitive, localOnly: it.localOnly, |