Fixed displaying columns that arent defined (#2)

Co-authored-by: adro <a.schlett@gmx.de>
This commit is contained in:
adroslice 2023-03-12 16:42:32 +01:00 committed by GitHub
parent 71687240c7
commit db147d842c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,7 +45,7 @@ function toggleSorting(columnName: string) {
<tbody>
<!-- eslint-disable-next-line vue/require-v-for-key -->
<tr v-for="row of displayData">
<td v-for="cell in row" :key="cell" v-text="cell"/>
<td v-for="[column] in Object.entries(columns ?? {})" :key="column" v-text="row[column]"/>
</tr>
</tbody>
</table>