mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-04 14:57:42 +00:00
fix(client): use boolean Monaco hover option
This commit is contained in:
parent
f1b287fdb9
commit
f3fac6f0dc
1 changed files with 1 additions and 1 deletions
|
|
@ -422,7 +422,7 @@ export const ArtifactCodeEditor = function ArtifactCodeEditor({
|
|||
quickSuggestions: !readOnly,
|
||||
suggestOnTriggerCharacters: !readOnly,
|
||||
parameterHints: { enabled: !readOnly },
|
||||
hover: { enabled: readOnly ? 'off' : 'on' },
|
||||
hover: { enabled: !readOnly },
|
||||
matchBrackets: readOnly ? 'never' : 'always',
|
||||
}),
|
||||
[readOnly],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue