perf: Update user orgs roles (#3829)

* perf: Update user orgs roles

* perf: Update user orgs roles

---------

Co-authored-by: Bai <baijiangjie@gmail.com>
This commit is contained in:
fit2bot
2024-04-09 16:51:05 +08:00
committed by GitHub
parent 8a60ad774f
commit c5e030e2fe
3 changed files with 3 additions and 3 deletions

View File

@@ -1981,7 +1981,7 @@
"PasskeyAddDisableInfo": "你的认证来源是 {source}, 不支持添加 Passkey"
},
"users": {
"OrgsAndRoles": "组织角色",
"OrgsAndRoles": "组织角色",
"LunaSettingUpdate": "Luna 配置设置",
"KokoSettingUpdate": "Koko 配置设置",
"UserSetting": "偏好设置",

View File

@@ -207,7 +207,7 @@ export default {
if (key.length >= allowKeyMaxLength) {
prettyKey = key.substring(0, allowKeyMaxLength - 3) + '...'
}
const item = prettyKey + ': ' + value.join(',')
const item = prettyKey + ': ' + value.join(', ')
doms.push([item, <br/>])
})
return <div>{doms}</div>

View File

@@ -105,7 +105,7 @@ export default {
filters: [],
formatterArgs: {
getItem(item) {
return item.key + ': ' + item.value.join(',')
return item.key + ': ' + item.value.join(', ')
}
}
},