From 0744a195c59c6e4de818e804ea44607c81fbdd01 Mon Sep 17 00:00:00 2001 From: TitCaz <73068017+TitCaz@users.noreply.github.com> Date: Wed, 19 Oct 2022 12:25:51 +0200 Subject: [PATCH] Fix expanded not maintain on another page than first --- src/components/Table.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Table.vue b/src/components/Table.vue index 9db76153..aa0234fb 100644 --- a/src/components/Table.vue +++ b/src/components/Table.vue @@ -933,6 +933,7 @@ export default { if (!hRow) { hRow = this.processedRows.find(r => r.vgt_header_id === flatRow.vgt_id); if (hRow) { + this.handleExpanded(hRow); hRow = JSON.parse(JSON.stringify(hRow)); hRow.children = []; reconstructedRows.push(hRow);