mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-02-03 00:33:57 +03:00
bugfix: display gpu ram
This commit is contained in:
parent
631b9b3bf6
commit
c04dde82d2
2
client/demo/dist/index.js
vendored
2
client/demo/dist/index.js
vendored
File diff suppressed because one or more lines are too long
@ -65,7 +65,7 @@ export const ConvertArea = (props: ConvertProps) => {
|
|||||||
}}>
|
}}>
|
||||||
{
|
{
|
||||||
gpusEntry.map(x => {
|
gpusEntry.map(x => {
|
||||||
return <option key={x.id} value={x.id}>{x.name}{x.name == "cpu" ? "" : `(${(x.memory / 1024 / 1024 / 1024).toFixed(0)})GB`} </option>
|
return <option key={x.id} value={x.id}>{x.name}{x.name == "cpu" ? "" : `(${(x.memory / 1024 / 1024 / 1024).toFixed(0)}GB)`} </option>
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
</select>
|
</select>
|
||||||
|
Loading…
Reference in New Issue
Block a user