Skip to content

Commit 2ae7bad

Browse files
committed
RI-6114: prevent long text overlapping in SuperSelect
1 parent 1aaa7f9 commit 2ae7bad

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

redisinsight/ui/src/pages/home/components/form/TlsDetails.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ const TlsDetails = (props: Props) => {
323323
<EuiSuperSelect
324324
placeholder="Select certificate"
325325
valueOfSelected={formik.values.selectedTlsClientCertId}
326+
className={styles.selectWithLongTextSupport}
326327
options={optionsCertsClient}
327328
onChange={(value) => {
328329
formik.setFieldValue('selectedTlsClientCertId', value)

redisinsight/ui/src/pages/home/components/styles.module.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,3 +166,7 @@
166166
}
167167
}
168168
}
169+
170+
.selectWithLongTextSupport {
171+
display: block !important;
172+
}

0 commit comments

Comments
 (0)