Skip to content

Commit

Permalink
fix(dashboard): fix Pivot Table V2 dragPreview in the dashboard (#21539)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenLYZ committed Sep 28, 2022
1 parent 60bab42 commit ab53d77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
import { css, styled } from '@superset-ui/core';

export const Styles = styled.div`
${({ theme }) => css`
${({ theme, isDashboardEditMode }) => css`
table.pvtTable {
position: relative;
position: ${isDashboardEditMode ? 'inherit' : 'relative'};
font-size: ${theme.typography.sizes.s}px;
text-align: left;
margin: ${theme.gridUnit}px;
Expand All @@ -32,7 +32,7 @@ export const Styles = styled.div`
}
table thead {
position: sticky;
position: ${isDashboardEditMode ? 'inherit' : 'sticky'};
top: 0;
}
Expand All @@ -51,7 +51,7 @@ export const Styles = styled.div`
}
table.pvtTable tbody tr.pvtRowTotals {
position: sticky;
position: ${isDashboardEditMode ? 'inherit' : 'sticky'};
bottom: 0;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,10 @@ export class TableRenderer extends React.Component {
);
}

isDashboardEditMode() {
return document.contains(document.querySelector('.dashboard--editing'));
}

render() {
if (this.cachedProps !== this.props) {
this.cachedProps = this.props;
Expand Down Expand Up @@ -867,7 +871,7 @@ export class TableRenderer extends React.Component {
};

return (
<Styles>
<Styles isDashboardEditMode={this.isDashboardEditMode()}>
<table className="pvtTable" role="grid">
<thead>
{colAttrs.map((c, j) =>
Expand Down

0 comments on commit ab53d77

Please sign in to comment.