fix(explore): datasource_type typo (#22543)
Co-authored-by: musa.hammadi <musa.hammadi@infostrategic.com>
This commit is contained in:
parent
9c0d6c51f1
commit
c2ace8dacb
|
|
@ -50,8 +50,8 @@ const EXPLORE_URL_SEARCH_PARAMS = {
|
|||
datasource: {
|
||||
name: 'datasource',
|
||||
parser: (datasource: string) => {
|
||||
const [datasource_id, datasouce_type] = datasource.split('__');
|
||||
return { datasource_id, datasouce_type };
|
||||
const [datasource_id, datasource_type] = datasource.split('__');
|
||||
return { datasource_id, datasource_type };
|
||||
},
|
||||
},
|
||||
form_data_key: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue