fix: Show Pinned data in demo mode (#11490)

This commit is contained in:
Mutasem Aldmour
2024-11-01 14:04:58 +01:00
committed by GitHub
parent 5b5bd7291d
commit ca2a583b5c
5 changed files with 70 additions and 19 deletions

View File

@@ -40,6 +40,14 @@ export function getOutputPanelDataContainer() {
return getOutputPanel().getByTestId('ndv-data-container');
}
export function getOutputTableRows() {
return getOutputPanelDataContainer().find('table tr');
}
export function getOutputTableRow(row: number) {
return getOutputTableRows().eq(row);
}
export function getOutputPanelTable() {
return getOutputPanelDataContainer().get('table');
}