Skip to content

Commit 1d1fdc3

Browse files
committed
fix style tag for table
1 parent f1fe28f commit 1d1fdc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/AggregationPanel/AggregationPanelComponents.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export const KeyValueElement = ({ item, appName, style }) => (
2424

2525
// Table Element Component
2626
export const TableElement = ({ columns, rows, style }) => (
27-
<div className="table-element" style={style}>
28-
<table>
27+
<div className="table-element">
28+
<table style={style}>
2929
<thead>
3030
<tr>
3131
{columns.map((column, idx) => (

0 commit comments

Comments
 (0)