diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-21 17:09:30 -0400 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-21 17:09:30 -0400 |
commit | a9f3539a8609073ca4947648474a8799bff8d329 (patch) | |
tree | 2d66f29932dddc18e3a0a73b05e9d14cb45a81ad /public-src/main.js | |
parent | 4a8b71759345a5808f976198179360612ab08fb1 (diff) |
Update the config to what I still care about
Diffstat (limited to 'public-src/main.js')
-rw-r--r-- | public-src/main.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public-src/main.js b/public-src/main.js index a86a815..f084d0b 100644 --- a/public-src/main.js +++ b/public-src/main.js @@ -2,12 +2,14 @@ define([ 'golden-layout', 'jarmon', './cfg/jarmon-winston.js', + './cfg/jarmon-mav.js', './components/gl/jarmon-tabbed-chart-ui.js', './components/gl/html.js', ], function( GoldenLayout, jarmon, cfgWinston, + cfgMav, glJarmon, glHTML, ) { @@ -35,6 +37,13 @@ define([ componentState: cfgWinston, }, { + title: 'mav', + isClosable: false, + type: 'component', + componentName: 'jarmon:tabbed-chart-ui', + componentState: cfgMav, + }, + { title: 'TLS', isClosable: false, type: 'component', |