mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 06:08:48 +00:00
support array of disks, for disk resource widget
This commit is contained in:
parent
ed65c89516
commit
6e01a743df
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue