mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 01:26:01 +00:00
cell data formatting in perspectives
This commit is contained in:
@@ -216,7 +216,12 @@ export class PerspectiveDisplay {
|
||||
for (let i = 0; i < collectedRow.columnIndexes.length; i++) {
|
||||
mainRow.rowData[collectedRow.columnIndexes[i]] = collectedRow.rowData[i];
|
||||
}
|
||||
mainRow.incompleteRowsIndicator = collectedRow.incompleteRowsIndicator;
|
||||
if (collectedRow.incompleteRowsIndicator) {
|
||||
mainRow.incompleteRowsIndicator = [
|
||||
...(mainRow.incompleteRowsIndicator || []),
|
||||
...collectedRow.incompleteRowsIndicator,
|
||||
];
|
||||
}
|
||||
|
||||
let rowCount = 1;
|
||||
for (const subrows of collectedRow.subRowCollections) {
|
||||
|
||||
Reference in New Issue
Block a user