fix(explore): datasource_type typo (#22543)

Co-authored-by: musa.hammadi <musa.hammadi@infostrategic.com>
This commit is contained in:
Musa Hamada 2022-12-31 13:00:58 +03:00 committed by GitHub
parent 9c0d6c51f1
commit c2ace8dacb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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: {