Skip to content

Commit

Permalink
Merge pull request edp963#2218 from ruanhan/dev-0.3
Browse files Browse the repository at this point in the history
fix(widget) fix piovt table rowheader out of order in chrome91
  • Loading branch information
scottsut authored Jun 24, 2021
2 parents c516240 + 0bb29e8 commit 8b54df7
Show file tree
Hide file tree
Showing 5 changed files with 427 additions and 157 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@ export class DashboardItem extends React.PureComponent<
}

private drillUp = (name: string) => {
// a group name by drill
this.receiveWidgetId()
const { sourceDataOfBrushed } = this.state
const isHasDrillHistory = this.isHasDrillHistory()
Expand Down
11 changes: 6 additions & 5 deletions webapp/app/containers/Widget/components/Pivot/Pivot.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "~assets/less/variable";
@import '~assets/less/variable';

.wrapper {
flex: 1;
Expand Down Expand Up @@ -52,8 +52,8 @@
.rowBody {
flex-shrink: 0;
overflow-y: auto;
display: flex;
flex-direction: row;
// display: flex;
// flex-direction: row;
.hideScrollbar;
}
}
Expand Down Expand Up @@ -142,7 +142,7 @@

p {
max-width: 200px;
margin: 0 auto; // 单th 100%
margin: 0 auto; // 单th 100%
.ellipsis;

&.colContent {
Expand Down Expand Up @@ -211,7 +211,8 @@
.rowBody,
.columnBody {
&.raw {
th, td {
th,
td {
border: 1px;
}
}
Expand Down
Loading

0 comments on commit 8b54df7

Please sign in to comment.