mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3772 - DataTable: the table disappears when using scrollHeight="flex" and virtual scrolling
This commit is contained in:
parent
1ef494f131
commit
ac0aad62c6
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@
|
|||
v-bind="virtualScrollerOptions"
|
||||
:items="processedData"
|
||||
:columns="columns"
|
||||
:style="{ height: scrollHeight !== 'flex' ? scrollHeight : undefined }"
|
||||
:style="scrollHeight !== 'flex' ? { height: scrollHeight } : undefined"
|
||||
:scrollHeight="scrollHeight !== 'flex' ? undefined : '100%'"
|
||||
:disabled="virtualScrollerDisabled"
|
||||
loaderDisabled
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue