style: worker added info status

This commit is contained in:
jialin
2025-12-18 12:19:31 +08:00
parent b524587a9a
commit 3a73d0c1b2
3 changed files with 6 additions and 6 deletions
@@ -147,7 +147,7 @@ const AddWorkerSteps: React.FC<AddWorkerProps> = (props) => {
},
{ count: addedCount }
)}
type="warning"
type="success"
/>
)}
</Container>
@@ -124,7 +124,7 @@ const AddWorker: React.FC<AddWorkerProps> = (props) => {
},
{ count: addedCount }
)}
type="warning"
type="success"
/>
)}
</span>
@@ -100,12 +100,12 @@ const SpecifyArguments = () => {
const containerNameConfig = summary.get('containerNameConfig') || {
enable: true,
name: ''
name: 'gpustack-worker'
};
const gpustackDataVolumeConfig = summary.get('gpustackDataVolumeConfig') || {
enable: true,
path: ''
path: 'gpustack-data'
};
const setWorkerIPConfig = (config: {
@@ -182,12 +182,12 @@ const SpecifyArguments = () => {
updateField('containerNameConfig', {
enable: true,
name: ''
name: 'gpustack-worker'
});
updateField('gpustackDataVolumeConfig', {
enable: true,
path: ''
path: 'gpustack-data'
});
}, []);