Skip to content

Commit

Permalink
Table: fix fixed column style on safari (#10130)
Browse files Browse the repository at this point in the history
  • Loading branch information
furybean authored and Leopoldthecoder committed Mar 13, 2018
1 parent c6e85db commit 9f09bd3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/table/src/table.vue
Expand Up @@ -99,7 +99,7 @@
:border="border"
:store="store"
:style="{
width: layout.fixedWidth ? layout.fixedWidth + 'px' : ''
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
}"></table-header>
</div>
<div
Expand All @@ -117,7 +117,7 @@
:row-class-name="rowClassName"
:row-style="rowStyle"
:style="{
width: layout.fixedWidth ? layout.fixedWidth + 'px' : ''
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
}">
</table-body>
<div
Expand All @@ -139,7 +139,7 @@
:summary-method="summaryMethod"
:store="store"
:style="{
width: layout.fixedWidth ? layout.fixedWidth + 'px' : ''
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
}"></table-footer>
</div>
</div>
Expand All @@ -162,7 +162,7 @@
:border="border"
:store="store"
:style="{
width: layout.rightFixedWidth ? layout.rightFixedWidth + 'px' : ''
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
}"></table-header>
</div>
<div
Expand All @@ -180,7 +180,7 @@
:row-style="rowStyle"
:highlight="highlightCurrentRow"
:style="{
width: layout.rightFixedWidth ? layout.rightFixedWidth + 'px' : ''
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
}">
</table-body>
</div>
Expand All @@ -196,7 +196,7 @@
:summary-method="summaryMethod"
:store="store"
:style="{
width: layout.rightFixedWidth ? layout.rightFixedWidth + 'px' : ''
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
}"></table-footer>
</div>
</div>
Expand Down

0 comments on commit 9f09bd3

Please sign in to comment.