VQB: Allow custom table names in TableSelector (#106420)

* feat(sql): allow custom table names in TableSelector

Restores the ability to enter custom table names not present in the database
by adding `allowCustomValue` to the Select component. This matches previous
functionality where users could manually specify table names not returned
by db.tables().

fixes: #106348

* empty line 45
This commit is contained in:
Victor Ubahakwe
2025-06-11 10:29:37 +02:00
committed by GitHub
parent 95efe7a388
commit f71a2062eb
@@ -38,6 +38,7 @@ export const TableSelector = ({ db, dataset, table, className, onChange, inputId
isLoading={state.loading}
menuShouldPortal={true}
placeholder={state.loading ? 'Loading tables' : 'Select table'}
allowCustomValue={true}
/>
);
};