Builtin ConverseJS mode: fix advanced controls hiding.
This commit is contained in:
parent
586df3983c
commit
c19db4dc9c
@ -10,6 +10,7 @@
|
||||
|
||||
* Spanish translations (thanks [rnek0](https://github.com/rnek0)).
|
||||
* Hide secret keys in diagnostic tool.
|
||||
* Builtin ConverseJS mode: fix advanced controls hiding.
|
||||
|
||||
## v5.0.2
|
||||
|
||||
|
@ -81,7 +81,7 @@ interface InitConverseParams {
|
||||
boshServiceUrl: string
|
||||
websocketServiceUrl: string
|
||||
authenticationUrl: string
|
||||
advancedControls: 'true' | 'false'
|
||||
advancedControls: boolean
|
||||
theme: string
|
||||
}
|
||||
window.initConverse = async function initConverse ({
|
||||
|
@ -21,7 +21,7 @@
|
||||
boshServiceUrl: '{{BOSH_SERVICE_URL}}',
|
||||
websocketServiceUrl: '{{WS_SERVICE_URL}}',
|
||||
authenticationUrl: '{{AUTHENTICATION_URL}}',
|
||||
advancedControls: '{{ADVANCEDCONTROLS}}',
|
||||
advancedControls: '{{ADVANCEDCONTROLS}}' === 'true',
|
||||
theme: '{{CONVERSEJS_THEME}}'
|
||||
})
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user