@dataloop-ai/components 0.20.183-ds-v3.1 → 0.20.183-ds-v3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -124,7 +124,9 @@ export default defineComponent({
|
|
|
124
124
|
|
|
125
125
|
let localScrollTarget: HTMLElement | undefined
|
|
126
126
|
const rootRef: Ref<HTMLElement | null> = ref(null)
|
|
127
|
-
const scrollSizeItem: Ref<number> = ref(
|
|
127
|
+
const scrollSizeItem: Ref<number> = ref(
|
|
128
|
+
virtualScrollItemSize.value || 40
|
|
129
|
+
)
|
|
128
130
|
|
|
129
131
|
const isDefined = (v: any) => v !== undefined && v !== null
|
|
130
132
|
|