Skip to content

Commit

Permalink
fix(ui): fix the slider tansition (#20641)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutosh16 authored Nov 1, 2024
1 parent 11267b9 commit d761c94
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ export class ApplicationDetails extends React.Component<RouteComponentProps<{app
{this.selectedExtension !== '' && activeStatusExt?.flyout && <activeStatusExt.flyout application={application} tree={tree} />}
</SlidingPanel>
<SlidingPanel
isMiddle={activeTopBarActionMenuExt?.isMiddle}
isMiddle={activeTopBarActionMenuExt?.isMiddle ?? true}
isShown={this.selectedExtension !== '' && activeTopBarActionMenuExt != null && activeTopBarActionMenuExt.flyout != null}
onClose={() => this.setExtensionPanelVisible('')}>
{this.selectedExtension !== '' && activeTopBarActionMenuExt?.flyout && (
Expand Down

0 comments on commit d761c94

Please sign in to comment.