feat(Sqllab): Enabling selection and copying of columns and rows in sql lab and dataset view (#31602)

This commit is contained in:
Samra Hanif 2025-01-07 23:26:06 +05:00 committed by GitHub
parent d68f8d11fe
commit 7f72b062d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 3 deletions

View File

@ -53,7 +53,6 @@ const StyledTable = styled(AntTable)<{ height?: number }>(
th.ant-table-cell {
font-weight: ${theme.typography.weights.bold};
color: ${theme.colors.grayscale.dark1};
user-select: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

View File

@ -174,14 +174,12 @@ const StyledTable = styled(AntTable)<{ height?: number }>(
th.ant-table-cell {
font-weight: ${theme.typography.weights.bold};
color: ${theme.colors.grayscale.dark1};
user-select: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ant-table-tbody > tr > td {
user-select: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;