From 37526de32310bdbf8f4e862fb5a4e4533b4db0ab Mon Sep 17 00:00:00 2001 From: おさむのひと <46447427+samunohito@users.noreply.github.com> Date: Thu, 9 Oct 2025 09:29:09 +0900 Subject: fix: aliasesの区切り文字が一致していないのを修正 (#16622) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: aliasesの区切り文字が一致していないのを修正 * fix CHANGELOG.md --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com> --- packages/frontend/src/pages/admin/custom-emojis-manager.local.list.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/frontend/src/pages') 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, -- cgit v1.2.3-freya