We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8b8cb1 commit f6536dcCopy full SHA for f6536dc
anms-ui/public/app/components/management/agents/reports.vue
@@ -12,7 +12,7 @@
12
v-model="selected"
13
@option:selected="onReportSelect()"></v-select>
14
<div v-for="(_, index) in tableItems" :key="index">
15
- <b-table bordered id="report-table" :items="tableHeaders[index]" thead-class="d-none">{{ }}</b-table>
+ <b-table id="report-table" :items="tableHeaders[index]" thead-class="d-none">{{ }}</b-table>
16
<div class="scrollable-div">
17
<b-table
18
bordered
@@ -90,7 +90,7 @@ export default {
90
for (let hI of holdHeader) {
91
row.push(item[hI]);
92
}
93
- currTableItems.push(row.flat(10));
+ currTableItems.push(row.flat());
94
console.log(currTableItems);
95
96
0 commit comments