mirror of
https://github.com/apache/superset.git
synced 2026-04-23 18:14:56 +00:00
Autocomplete in the table browser in SQL lab is broken - Fix part 2 (#7770)
* fix: table autocomplete and update unit tests * fix: linting issues * fix: disable tests properly * empty commit * fix: align structure across fe and be
This commit is contained in:
committed by
Beto Dealmeida
parent
e0d040c377
commit
963dce6421
@@ -343,16 +343,22 @@ export const databases = {
|
||||
export const tables = {
|
||||
options: [
|
||||
{
|
||||
value: { schema: 'main', table: 'birth_names' },
|
||||
value: 'birth_names',
|
||||
schema: 'main',
|
||||
label: 'birth_names',
|
||||
title: 'birth_names',
|
||||
},
|
||||
{
|
||||
value: { schema: 'main', table: 'energy_usage' },
|
||||
value: 'energy_usage',
|
||||
schema: 'main',
|
||||
label: 'energy_usage',
|
||||
title: 'energy_usage',
|
||||
},
|
||||
{
|
||||
value: { schema: 'main', table: 'wb_health_population' },
|
||||
value: 'wb_health_population',
|
||||
schema: 'main',
|
||||
label: 'wb_health_population',
|
||||
title: 'wb_health_population',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user