Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/6e01a743dfebdf3b7fbe257b209121df9dcf7d61 You should set ROOT_URL correctly, otherwise the web may not work correctly.

support array of disks, for disk resource widget

pull/100/head
Ben Phelps 3 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