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:
@@ -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}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user