Skip to content

Commit f6536dc

Browse files
author
David Linko
committed
fixed flatting
1 parent e8b8cb1 commit f6536dc

File tree

1 file changed

+2
-2
lines changed
  • anms-ui/public/app/components/management/agents

1 file changed

+2
-2
lines changed

anms-ui/public/app/components/management/agents/reports.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
v-model="selected"
1313
@option:selected="onReportSelect()"></v-select>
1414
<div v-for="(_, index) in tableItems" :key="index">
15-
<b-table bordered id="report-table" :items="tableHeaders[index]" thead-class="d-none">{{ }}</b-table>
15+
<b-table id="report-table" :items="tableHeaders[index]" thead-class="d-none">{{ }}</b-table>
1616
<div class="scrollable-div">
1717
<b-table
1818
bordered
@@ -90,7 +90,7 @@ export default {
9090
for (let hI of holdHeader) {
9191
row.push(item[hI]);
9292
}
93-
currTableItems.push(row.flat(10));
93+
currTableItems.push(row.flat());
9494
console.log(currTableItems);
9595
}
9696

0 commit comments

Comments
 (0)