fix term crash when bell is false

This commit is contained in:
Labhansh Agrawal 2023-07-13 11:24:31 +05:30
parent ab3d4b7e8f
commit 8003736150
5 changed files with 14 additions and 8 deletions

View file

@ -33,7 +33,10 @@
},
"bell": {
"description": "Supported Options:\n1. 'SOUND' -> Enables the bell as a sound\n2. false: turns off the bell",
"type": "string"
"enum": [
"SOUND",
false
]
},
"bellSound": {
"description": "base64 encoded string of the sound file to use for the bell\nif null, the default bell will be used",
@ -357,7 +360,10 @@
},
"bell": {
"description": "Supported Options:\n1. 'SOUND' -> Enables the bell as a sound\n2. false: turns off the bell",
"type": "string"
"enum": [
"SOUND",
false
]
},
"bellSound": {
"description": "base64 encoded string of the sound file to use for the bell\nif null, the default bell will be used",