Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/client/src/widgets/BaseInputWidget/component/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const InputComponentWrapper = styled((props) => (
"boxShadow",
"accentColor",
"isDynamicHeightEnabled",
"isMultiLine",
])}
/>
))<{
Expand Down
5 changes: 5 additions & 0 deletions app/client/src/widgets/ButtonWidget/component/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ export const StyledButton = styled((props) => (
"boxShadowColor",
"buttonColor",
"buttonVariant",
"primaryColor",
"navColorStyle",
"varient",
Comment thread
rishabhrathod01 marked this conversation as resolved.
Outdated
"insideSidebar",
"isMinimal",
])}
/>
))<ThemeProp & ButtonStyleProps>`
Expand Down
6 changes: 5 additions & 1 deletion app/client/src/widgets/ContainerWidget/widget/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,11 @@ export class ContainerWidget extends BaseWidget<
this.props.positioning !== Positioning.Vertical;

return (
<ContainerComponent {...props} noScroll={isAutoHeightEnabled}>
<ContainerComponent
key={props.widgetId}
{...props}
noScroll={isAutoHeightEnabled}
>
<WidgetsMultiSelectBox
{...this.getSnapSpaces()}
noContainerOffset={!!props.noContainerOffset}
Expand Down
5 changes: 5 additions & 0 deletions app/client/src/widgets/IconButtonWidget/component/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ export const StyledButton = styled((props) => (
"dimension",
"hasOnClickAction",
"compactMode",
"buttonColor",
"primaryColor",
"navColorStyle",
"isMinimal",
"insideSidebar",
])}
/>
))<ThemeProp & ButtonStyleProps>`
Expand Down