feat(api-keys): rename User Name column to Creator and move before Created
Rename the api-keys list column from User Name to Creator for clarity and reorder it to sit immediately before the Created column. Add the common.table.creator locale key across all supported languages.
This commit is contained in:
@@ -55,6 +55,7 @@ export default {
|
|||||||
'common.button.viewevent': 'View Events',
|
'common.button.viewevent': 'View Events',
|
||||||
'common.button.recreate': 'Recreate',
|
'common.button.recreate': 'Recreate',
|
||||||
'common.table.operation': 'Operations',
|
'common.table.operation': 'Operations',
|
||||||
|
'common.table.creator': 'Creator',
|
||||||
'common.table.createTime': 'Created',
|
'common.table.createTime': 'Created',
|
||||||
'common.table.updateTime': 'Updated',
|
'common.table.updateTime': 'Updated',
|
||||||
'common.table.description': 'Description',
|
'common.table.description': 'Description',
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ export default {
|
|||||||
'common.button.viewevent': 'イベントを表示',
|
'common.button.viewevent': 'イベントを表示',
|
||||||
'common.button.recreate': '再作成',
|
'common.button.recreate': '再作成',
|
||||||
'common.table.operation': '操作',
|
'common.table.operation': '操作',
|
||||||
|
'common.table.creator': '作成者',
|
||||||
'common.table.createTime': '作成日時',
|
'common.table.createTime': '作成日時',
|
||||||
'common.table.updateTime': '更新日時',
|
'common.table.updateTime': '更新日時',
|
||||||
'common.table.description': '説明',
|
'common.table.description': '説明',
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ export default {
|
|||||||
'common.button.viewevent': 'Просмотр событий',
|
'common.button.viewevent': 'Просмотр событий',
|
||||||
'common.button.recreate': 'Пересоздать',
|
'common.button.recreate': 'Пересоздать',
|
||||||
'common.table.operation': 'Действия',
|
'common.table.operation': 'Действия',
|
||||||
|
'common.table.creator': 'Создатель',
|
||||||
'common.table.createTime': 'Создано',
|
'common.table.createTime': 'Создано',
|
||||||
'common.table.updateTime': 'Обновлено',
|
'common.table.updateTime': 'Обновлено',
|
||||||
'common.table.description': 'Описание',
|
'common.table.description': 'Описание',
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ export default {
|
|||||||
'common.button.viewevent': 'Olayları Görüntüle',
|
'common.button.viewevent': 'Olayları Görüntüle',
|
||||||
'common.button.recreate': 'Yeniden Oluştur',
|
'common.button.recreate': 'Yeniden Oluştur',
|
||||||
'common.table.operation': 'İşlemler',
|
'common.table.operation': 'İşlemler',
|
||||||
|
'common.table.creator': 'Oluşturan',
|
||||||
'common.table.createTime': 'Oluşturulma',
|
'common.table.createTime': 'Oluşturulma',
|
||||||
'common.table.updateTime': 'Güncellenme',
|
'common.table.updateTime': 'Güncellenme',
|
||||||
'common.table.description': 'Açıklama',
|
'common.table.description': 'Açıklama',
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ export default {
|
|||||||
'common.button.viewlog': '查看日志',
|
'common.button.viewlog': '查看日志',
|
||||||
'common.button.viewevent': '查看事件',
|
'common.button.viewevent': '查看事件',
|
||||||
'common.table.operation': '操作',
|
'common.table.operation': '操作',
|
||||||
|
'common.table.creator': '创建者',
|
||||||
'common.table.createTime': '创建时间',
|
'common.table.createTime': '创建时间',
|
||||||
'common.table.updateTime': '更新时间',
|
'common.table.updateTime': '更新时间',
|
||||||
'common.table.description': '描述',
|
'common.table.description': '描述',
|
||||||
|
|||||||
@@ -109,17 +109,6 @@ const useModelsColumns = ({
|
|||||||
</AutoTooltip>
|
</AutoTooltip>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: intl.formatMessage({ id: 'users.table.username' }),
|
|
||||||
dataIndex: 'user_name',
|
|
||||||
key: 'user_name',
|
|
||||||
hidden: !is_admin,
|
|
||||||
render: (text: string, record: ListItem) => (
|
|
||||||
<AutoTooltip ghost style={{ maxWidth: 200 }}>
|
|
||||||
{text || '-'}
|
|
||||||
</AutoTooltip>
|
|
||||||
)
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: intl.formatMessage({ id: 'apikeys.form.expiretime' }),
|
title: intl.formatMessage({ id: 'apikeys.form.expiretime' }),
|
||||||
dataIndex: 'expires_at',
|
dataIndex: 'expires_at',
|
||||||
@@ -187,6 +176,17 @@ const useModelsColumns = ({
|
|||||||
<AutoTooltip ghost>{text}</AutoTooltip>
|
<AutoTooltip ghost>{text}</AutoTooltip>
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: intl.formatMessage({ id: 'common.table.creator' }),
|
||||||
|
dataIndex: 'user_name',
|
||||||
|
key: 'user_name',
|
||||||
|
hidden: !is_admin,
|
||||||
|
render: (text: string) => (
|
||||||
|
<AutoTooltip ghost style={{ maxWidth: 200 }}>
|
||||||
|
{text || '-'}
|
||||||
|
</AutoTooltip>
|
||||||
|
)
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: intl.formatMessage({ id: 'common.table.createTime' }),
|
title: intl.formatMessage({ id: 'common.table.createTime' }),
|
||||||
dataIndex: 'created_at',
|
dataIndex: 'created_at',
|
||||||
|
|||||||
Reference in New Issue
Block a user