Skip to content

Commit

Permalink
fix border issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Nov 15, 2024
1 parent 29055c7 commit 4fa44ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/layer-table/layer-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1069,10 +1069,9 @@ export class LayerTable {
slot?: string
): VNode {
const id = "more-table-options";
const toolbarClass = this._canShowFullTextSearch() ? "border-bottom" : "";
return (
<div
class={`display-flex height-51-px ${toolbarClass}`}
class={`display-flex height-51-px border-bottom`}
ref={(el) => this._toolbar = el}
slot={slot}
>
Expand Down Expand Up @@ -1859,7 +1858,8 @@ export class LayerTable {
visibleElements: {
columnDescriptions: false,
header: false,
menu: false
menu: false,
progress: false
},
tableTemplate: {
columnTemplates
Expand Down

0 comments on commit 4fa44ee

Please sign in to comment.