diff options
| author | stonedDiscord <Tukz@gmx.de> | 2024-08-12 13:40:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-12 13:40:47 +0200 |
| commit | 2039178b0f4550534ea6cca1efe64e2a6e4e901d (patch) | |
| tree | 880b7290ed18b2eb8fb38dc8a39b5ad0ca234e58 /webAO/ui.js | |
| parent | 1a32ea5886de62a495e6fcc65b3d270f9bd84cce (diff) | |
| parent | dc85197c9b966105813dd026480f9f6bc77d8b68 (diff) | |
Merge pull request #225 from AttorneyOnline/playerlist
Playerlist
Diffstat (limited to 'webAO/ui.js')
| -rw-r--r-- | webAO/ui.js | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/webAO/ui.js b/webAO/ui.js index f82688c..154b008 100644 --- a/webAO/ui.js +++ b/webAO/ui.js @@ -47,11 +47,22 @@ const config = { }], }, { - type: 'component', - title: 'Music', + type: 'stack', width: 30, - componentName: 'template', - componentState: { id: 'music' }, + content: [{ + type: 'component', + isClosable: false, + title: 'Music', + componentName: 'template', + componentState: { id: 'music' }, + }, + { + type: 'component', + isClosable: false, + title: 'Players', + componentName: 'template', + componentState: { id: 'players' }, + }], }], }, { |
