This is an automated email from the ASF dual-hosted git repository.
erikrit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new a819797 fix: error message modal overflow (#10580)
a819797 is described below
commit a8197976fe7ec496bff6106541ee2392898a6cd7
Author: Erik Ritter <[email protected]>
AuthorDate: Tue Aug 11 17:20:39 2020 -0700
fix: error message modal overflow (#10580)
---
superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
b/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
index 8dd832e..e96d08c 100644
--- a/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
+++ b/superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx
@@ -58,6 +58,7 @@ const ErrorAlertDiv = styled.div<{ level: ErrorLevel }>`
const ErrorModal = styled(Modal)<{ level: ErrorLevel }>`
color: ${({ level, theme }) => theme.colors[level].dark2};
+ overflow-wrap: break-word;
.icon {
margin-right: ${({ theme }) => 2 * theme.gridUnit}px;