diff --git a/www/src/Themes.tsx b/www/src/Themes.tsx
index ee1e796d..9f039820 100644
--- a/www/src/Themes.tsx
+++ b/www/src/Themes.tsx
@@ -292,7 +292,6 @@ export const defaultOverrides = (theme: Theme): ThemeOptions => ({
theme.palette.background.elevation[closestElevation],
};
}
- console.log(classes);
return classes;
})(),
},
diff --git a/www/src/components/Table/BulkActions/index.tsx b/www/src/components/Table/BulkActions/index.tsx
index 1bb9c4bd..3bebb02b 100644
--- a/www/src/components/Table/BulkActions/index.tsx
+++ b/www/src/components/Table/BulkActions/index.tsx
@@ -221,6 +221,7 @@ export default function BulkActions({ selectedRows, columns, clearSelection }) {
select
variant="filled"
className={classes.dropdown}
+ value=""
onChange={(event) => executeAction(event.target.value, "run")}
margin="dense"
InputProps={{
@@ -249,7 +250,9 @@ export default function BulkActions({ selectedRows, columns, clearSelection }) {
}`}
>
{actionColumns.map((action) => (
-
+
))}
diff --git a/www/src/components/Table/index.tsx b/www/src/components/Table/index.tsx
index 7d8cd7a0..6d7f49e9 100644
--- a/www/src/components/Table/index.tsx
+++ b/www/src/components/Table/index.tsx
@@ -147,10 +147,6 @@ export default function Table() {
if (!tableActions || !tableState) return <>>;
- const onHeaderDrop = (dragged: any, target: any) => {
- tableActions.column.reorder(dragged, target);
- };
-
const rowHeight = tableState.config.rowHeight;
return (