mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-13 02:17:25 +01:00
15 lines
317 B
JavaScript
15 lines
317 B
JavaScript
import {} from './header.entrypoint.js'
|
|
import Job from './Job.root.svelte'
|
|
|
|
new Job({
|
|
target: document.getElementById('svelte-app'),
|
|
props: {
|
|
dbid: jobInfos.id,
|
|
authlevel: authlevel,
|
|
roles: roles
|
|
},
|
|
context: new Map([
|
|
['cc-config', clusterCockpitConfig]
|
|
])
|
|
})
|