Skip to content

Commit

Permalink
added z-index on TreeSelect in edit template modal (#4368)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo authored Nov 7, 2023
1 parent 61502c1 commit d1dd97b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/core/ui/components/MultiSelectTreeWithTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export class MultiSelectTreeWithTemplate<T> extends React.PureComponent<IProps<T
allowMultiple={this.props.allowMultiple}
singleLevelSearch
readOnly={this.props.readOnly}
zIndex={1051}
/>
);
} else if (props.kind === 'asynchronous') {
Expand All @@ -89,6 +90,7 @@ export class MultiSelectTreeWithTemplate<T> extends React.PureComponent<IProps<T
valueTemplate={(item) => <ValueTemplate item={item} />}
allowMultiple={this.props.allowMultiple}
readOnly={this.props.readOnly}
zIndex={1051}
/>
);
} else {
Expand Down

0 comments on commit d1dd97b

Please sign in to comment.