fix: chart datasource explore URL showing datasource name for druid (#9839)

This commit is contained in:
Daniel Vaz Gaspar 2020-05-21 10:45:47 +01:00 committed by GitHub
parent a262ea7487
commit 61ebb9bbc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class Slice(
if self.table:
return self.table.explore_url
datasource = self.datasource
return datasource.name if datasource else None
return datasource.explore_url if datasource else None
def datasource_name_text(self) -> Optional[str]:
# pylint: disable=no-member