[SQL Migration] Fix overflow behavior on migration cutover dialog to avoid truncating backup file names (#18679)

This commit is contained in:
Raymond Truong
2022-03-10 15:50:28 -08:00
committed by GitHub
parent f424bea0de
commit 85d6b2ef46

View File

@@ -814,8 +814,8 @@ export class MigrationCutoverDialog {
...styles.BODY_CSS,
'margin': '4px 0 12px',
'width': '100%',
'overflow': 'hidden',
'text-overflow': 'ellipses'
'overflow': 'visible',
'overflow-wrap': 'break-word'
}
}).component();