Skip to content

Commit

Permalink
fix(explore): datasource_type typo (#22543)
Browse files Browse the repository at this point in the history
Co-authored-by: musa.hammadi <musa.hammadi@infostrategic.com>
  • Loading branch information
Musa10 and musa.hammadi authored Dec 31, 2022
1 parent 9c0d6c5 commit c2ace8d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit c2ace8d

Please sign in to comment.