Skip to content

Commit 7f877f4

Browse files
committed
chore: no backdrop props
1 parent aa11e28 commit 7f877f4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Pages/Applications/DevtronApps/Details/AppConfigurations/MainContent/DeploymentTemplate/DTChartSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const ChartSelectorDropdown = ({
120120
/>
121121
</div>
122122
</PopupMenu.Button>
123-
<PopupMenu.Body rootClassName="dc__overflow-auto mxh-350 w-400 dc__border br-4">
123+
<PopupMenu.Body noBackDrop rootClassName="dc__overflow-auto mxh-350 w-400 dc__border br-4">
124124
<>
125125
{customCharts.length > 0 && (
126126
<div

src/components/cdPipeline/BuildCD.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ export default function BuildCD({
626626
return (
627627
<div className="form__row">
628628
<p className="form__label form__label--caps mb-8-imp">
629-
<div className="flex dc__content-space mt-16">
629+
<div className="flex dc__content-space mt-16">
630630
<div className="flex left">
631631
<span>Deployment Strategy</span>
632632
{renderDeploymentStrategyTippy()}

src/components/common/Select/Select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const Select: React.FC<SelectProps> & SelectComposition = ({
117117
{button}
118118
</PopupMenu.Button>
119119
{popupOpen && AsyncComponent}
120-
<PopupMenu.Body rootClassName={`select-popup ${rootClassName || ''}`} autoWidth={autoWidth}>
120+
<PopupMenu.Body noBackDrop rootClassName={`select-popup ${rootClassName || ''}`} autoWidth={autoWidth}>
121121
{loading ? null : (
122122
<>
123123
{optionLength === 0 && (

0 commit comments

Comments
 (0)