Compare commits

..
2 changed files with 9 additions and 3 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ on:
workflow_call:
inputs:
github-sha:
required: false
required: true
type: string
jobs:
@@ -109,7 +109,7 @@ jobs:
#----------------------------------------------
- name: Run tests
working-directory: ./console-test
run: poetry run pytest -v -s
run: poetry run pytest -v -s --numprocesses 2 --dist loadfile --durations=20
- name: Check files
run: |
ls -al .
+7 -1
View File
@@ -312,7 +312,6 @@ export const AccountTable = ({
]);
const data = rowData?.filter((data) => data.asset.id !== pinnedAsset?.id);
return (
<AgGrid
{...props}
@@ -321,6 +320,13 @@ export const AccountTable = ({
rowData={data}
defaultColDef={defaultColDef}
columnDefs={colDefs}
overlayNoRowsTemplate={
// account for the pinned asset is filtered out to prevent duplicate
// data in the pinned row and the main table rows. AgGrid will not
// consider the pinned row when determining whether to show the no
// rows template or not so we need to override it
rowData?.length ? '<span />' : props.overlayNoRowsTemplate
}
getRowHeight={getPinnedAssetRowHeight}
pinnedTopRowData={pinnedRow ? [pinnedRow] : undefined}
/>