fix chat placeholder
This commit is contained in:
parent
d27f2b4a61
commit
208f5b7e0d
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ export default () => {
|
|||
opacity={(isChatActive ? chatOpacityOpened : chatOpacity) / 100}
|
||||
messages={messages}
|
||||
opened={isChatActive}
|
||||
placeholder={forwardChat && viewerConnection ? undefined : 'Chat forwarding is not enabled in the plugin settings'}
|
||||
placeholder={forwardChat || !viewerConnection ? undefined : 'Chat forwarding is not enabled in the plugin settings'}
|
||||
sendMessage={(message) => {
|
||||
const builtinHandled = tryHandleBuiltinCommand(message)
|
||||
if (miscUiState.loadedServerIndex && (message.startsWith('/login') || message.startsWith('/register'))) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue