mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 00:48:25 +00:00
Fix: Small height of single line code editor when expanded
This commit is contained in:
parent
ac86b93045
commit
c65e689b15
2 changed files with 9 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ const usePortal = ({ children, ...restProps }) => {
|
|||
isCopilotEnabled={isCopilotEnabled}
|
||||
>
|
||||
<div
|
||||
className={`editor-container ${optionalProps.cls ?? ''}`}
|
||||
className={`editor-container codehinter-popup ${optionalProps.cls ?? ''}`}
|
||||
key={key}
|
||||
data-cy={`codehinder-popup-input-field`}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -18891,4 +18891,12 @@ section.ai-message-prompt-input-wrapper {
|
|||
.cm-editor {
|
||||
max-height: 100px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.codehinter-popup {
|
||||
.single-line-codehinter-input {
|
||||
.cm-editor {
|
||||
max-height: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue