fix: add woker modal text
This commit is contained in:
@@ -17,7 +17,7 @@ npm install -g pnpm
|
|||||||
3. Setup
|
3. Setup
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone https://github.com/seal-io/gpustack-ui/
|
git clone https://github.com/gpustack/gpustack-ui/
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Install dependencies
|
4. Install dependencies
|
||||||
|
|||||||
@@ -26,5 +26,5 @@ export default {
|
|||||||
'resources.worker.add.step2.tips':
|
'resources.worker.add.step2.tips':
|
||||||
'Note: <span style="color: #000;font-weight: 600">mytoken</span> is the token obtained in the first step.',
|
'Note: <span style="color: #000;font-weight: 600">mytoken</span> is the token obtained in the first step.',
|
||||||
'resources.worker.add.step3':
|
'resources.worker.add.step3':
|
||||||
'Refresh workers list, you can see the newly added worker.'
|
'Refresh workers list, you will see the new worker.'
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -71,3 +71,41 @@ export const ActionList = [
|
|||||||
icon: EditOutlined
|
icon: EditOutlined
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
export const columns = [
|
||||||
|
{
|
||||||
|
title: 'models.name',
|
||||||
|
dataIndex: 'name',
|
||||||
|
key: 'name'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'models.type',
|
||||||
|
dataIndex: 'type',
|
||||||
|
key: 'type'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'models.source',
|
||||||
|
dataIndex: 'source',
|
||||||
|
key: 'source'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'models.status',
|
||||||
|
dataIndex: 'status',
|
||||||
|
key: 'status'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'models.createdat',
|
||||||
|
dataIndex: 'createdAt',
|
||||||
|
key: 'createdAt'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'models.updatedat',
|
||||||
|
dataIndex: 'updatedAt',
|
||||||
|
key: 'updatedAt'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'models.action',
|
||||||
|
dataIndex: 'action',
|
||||||
|
key: 'action'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user