fix(style): sso button width

This commit is contained in:
jialin
2026-06-03 21:29:31 +08:00
committed by jialin
parent caea43590a
commit 24b458530d
3 changed files with 9 additions and 9 deletions
@@ -60,10 +60,14 @@ export default function useQueryInstanceTypes() {
...item.status,
onceMaxRequest: {
...rawMax,
cpu: rawMax?.cpu ? `${ceilMilliToCore(rawMax.cpu)?.cores}` : '',
ram: rawMax?.ram ? `${parseQuantityToGi(rawMax.ram)?.value}` : '',
cpu: rawMax?.cpu
? `${ceilMilliToCore(rawMax.cpu)?.cores || 0}`
: '',
ram: rawMax?.ram
? `${parseQuantityToGi(rawMax.ram)?.value || 0}`
: '',
localStorage: rawMax?.localStorage
? `${parseQuantityToGi(rawMax.localStorage)?.value}`
? `${parseQuantityToGi(rawMax.localStorage)?.value || 0}`
: ''
}
},