mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Merge pull request #12906 from ToolJet/fix/event-action-ui
Fix: Width for the group divider in event action dropdown
This commit is contained in:
commit
e787e87927
7 changed files with 16 additions and 4 deletions
|
|
@ -10,12 +10,13 @@ import AppModeToggle from './AppModeToggle';
|
|||
import { ThemeSelect } from '@/modules/Appbuilder/components';
|
||||
import MaintenanceMode from './MaintenanceMode';
|
||||
import HideHeaderToggle from './HideHeaderToggle';
|
||||
import { ModuleProvider } from '@/AppBuilder/_contexts/ModuleContext';
|
||||
|
||||
const GlobalSettings = ({ darkMode }) => {
|
||||
const shouldFreeze = useStore((state) => state.getShouldFreeze());
|
||||
|
||||
return (
|
||||
<>
|
||||
<ModuleProvider moduleId={'canvas'}>
|
||||
<div>
|
||||
<div bsPrefix="global-settings-popover" className="global-settings-panel">
|
||||
<HeaderSection>
|
||||
|
|
@ -44,7 +45,7 @@ const GlobalSettings = ({ darkMode }) => {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
</ModuleProvider>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -467,7 +467,7 @@ export const EventManager = ({
|
|||
if (data.label === 'run-action') return;
|
||||
return (
|
||||
<div
|
||||
className="tw-border-x-0 tw-border-t-0 tw-border-b-[0.5px] tw-border-solid tw-my-[4px]"
|
||||
className="tw-border-x-0 tw-border-t-0 tw-border-b-[1px] tw-border-solid tw-my-[4px]"
|
||||
style={{ borderColor: 'var(--border-weak)' }}
|
||||
></div>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ export const containerConfig = {
|
|||
top: 20,
|
||||
left: 1,
|
||||
height: 40,
|
||||
width: 20,
|
||||
},
|
||||
displayName: 'ContainerText',
|
||||
properties: ['text'],
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ export const containerConfig = {
|
|||
top: 20,
|
||||
left: 1,
|
||||
height: 40,
|
||||
width: 20,
|
||||
},
|
||||
displayName: 'ContainerText',
|
||||
properties: ['text'],
|
||||
|
|
|
|||
|
|
@ -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`}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -18947,6 +18947,14 @@ section.ai-message-prompt-input-wrapper {
|
|||
}
|
||||
}
|
||||
|
||||
.codehinter-popup {
|
||||
.single-line-codehinter-input {
|
||||
.cm-editor {
|
||||
max-height: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.missing-groups-modal {
|
||||
.modal-body {
|
||||
padding: 16px;
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ export const containerConfig = {
|
|||
top: 20,
|
||||
left: 1,
|
||||
height: 40,
|
||||
width: 20,
|
||||
},
|
||||
displayName: 'ContainerText',
|
||||
properties: ['text'],
|
||||
|
|
|
|||
Loading…
Reference in a new issue