support array of disks, for disk resource widget

pull/100/head
Ben Phelps 2 years ago
parent ed65c89516
commit 6e01a743df

@ -8,7 +8,11 @@ export default function Resources({ options }) {
<div className="flex flex-row space-x-4 self-center">
{options.cpu && <Cpu />}
{options.memory && <Memory />}
{options.disk && <Disk options={options} />}
{Array.isArray(options.disk) ? (
options.disk.map((disk) => <Disk key={disk} options={{ disk }} />)
) : (
<Disk options={options} />
)}
</div>
{options.label && (
<div className="ml-6 pt-1 text-center text-theme-800 dark:text-theme-200 text-xs">{options.label}</div>

Loading…
Cancel
Save