gradio-pr-bot commited on
Commit
9865e98
·
verified ·
1 Parent(s): 8040b16

Upload folder using huggingface_hub

Browse files
6.24.1/dataframe/package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "@gradio/dataframe",
3
- "version": "0.24.2",
4
  "description": "Gradio UI packages",
5
  "type": "module",
6
  "author": "",
 
1
  {
2
  "name": "@gradio/dataframe",
3
+ "version": "0.24.3",
4
  "description": "Gradio UI packages",
5
  "type": "module",
6
  "author": "",
6.24.1/dataframe/shared/tanstack/virtual.svelte.ts CHANGED
@@ -80,8 +80,8 @@ export function createSvelteVirtualizer<
80
  }
81
  });
82
 
83
- if (prev_count === 0 && current_count > 0) {
84
- virtualizer.measure();
85
  }
86
  prev_count = current_count;
87
  });
 
80
  }
81
  });
82
 
83
+ if (current_count !== prev_count) {
84
+ version += 1;
85
  }
86
  prev_count = current_count;
87
  });