Skip to content

Commit 4b4565b

Browse files
eeshmdhairyashiil
andauthored
fix: constrain AddActionDialog overflow and footer behavior (calcom#26087)
Co-authored-by: Dhairyashil Shinde <93669429+dhairyashiil@users.noreply.github.com>
1 parent 2da6f5b commit 4b4565b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/features/ee/workflows/components/AddActionDialog.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type AddActionFormValues = {
5555
numberRequired?: boolean;
5656
senderId?: string;
5757
senderName?: string;
58-
};
58+
};
5959

6060
export const AddActionDialog = (props: IAddActionDialog) => {
6161
const { t } = useLocale();
@@ -138,7 +138,7 @@ export const AddActionDialog = (props: IAddActionDialog) => {
138138

139139
return (
140140
<Dialog open={isOpenDialog} onOpenChange={setIsOpenDialog}>
141-
<DialogContent enableOverflow type="creation" title={t("add_action")}>
141+
<DialogContent type="creation" title={t("add_action")}>
142142
<div className="-mt-3 space-x-3">
143143
<Form
144144
form={form}
@@ -257,7 +257,7 @@ export const AddActionDialog = (props: IAddActionDialog) => {
257257
/>
258258
</div>
259259
)}
260-
<DialogFooter showDivider className="mt-12">
260+
<DialogFooter showDivider noSticky className="mt-12">
261261
<DialogClose
262262
onClick={() => {
263263
setIsOpenDialog(false);

0 commit comments

Comments
 (0)