mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-04-04 11:15:55 +02:00
***Update config-demo.json with new database connection details*** ***Add console.log statement in Systems.root.svelte*** ***Add "Partitions" menu item in Header.svelte*** ***Add partitions related files and routes*** ***Add partitions.entrypoint.js*** ***Update Makefile to use pnpm instead of npm*** ***Comment out wget commands in startDemo.sh*** ***Update rollup.config.mjs to include partitions.entrypoint.js*** ***Add PartitionSetting.svelte and Dashboard.svelte
15 lines
339 B
JavaScript
15 lines
339 B
JavaScript
import {} from './header.entrypoint.js'
|
|
import Partitions from './Partitions.root.svelte'
|
|
|
|
new Partitions({
|
|
target: document.getElementById('svelte-app'),
|
|
props: {
|
|
cluster: infos.cluster,
|
|
from: infos.from,
|
|
to: infos.to
|
|
},
|
|
context: new Map([
|
|
['cc-config', clusterCockpitConfig]
|
|
])
|
|
})
|