This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 4e79ffd Set label max width (#15710)
4e79ffd is described below
commit 4e79ffd471bacc11da9f09566d7870811ee67ff1
Author: Geido <[email protected]>
AuthorDate: Mon Jul 19 06:10:38 2021 +0200
Set label max width (#15710)
---
.../components/DatasourcePanel/DatasourcePanelDragWrapper/index.tsx | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/superset-frontend/src/explore/components/DatasourcePanel/DatasourcePanelDragWrapper/index.tsx
b/superset-frontend/src/explore/components/DatasourcePanel/DatasourcePanelDragWrapper/index.tsx
index e12c7f9..c4ad395 100644
---
a/superset-frontend/src/explore/components/DatasourcePanel/DatasourcePanelDragWrapper/index.tsx
+++
b/superset-frontend/src/explore/components/DatasourcePanel/DatasourcePanelDragWrapper/index.tsx
@@ -28,6 +28,10 @@ const DatasourceItemContainer = styled.div`
height: ${({ theme }) => theme.gridUnit * 6}px;
cursor: pointer;
+ > div {
+ width: 100%;
+ }
+
:hover {
background-color: ${({ theme }) => theme.colors.grayscale.light2};
}