mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-01-24 18:39:06 +01:00
48225662b1
- optional emission constant config line added
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
import {} from './header.entrypoint.js'
|
|
import Job from './Job.root.svelte'
|
|
|
|
new Job({
|
|
target: document.getElementById('svelte-app'),
|
|
props: {
|
|
dbid: jobInfos.id,
|
|
username: username,
|
|
authlevel: authlevel,
|
|
roles: roles
|
|
},
|
|
context: new Map([
|
|
['cc-config', clusterCockpitConfig],
|
|
['resampling', resampleConfig],
|
|
['emission', emission]
|
|
])
|
|
})
|