fix: add schema name to datasource field in chart list (#11278)

This commit is contained in:
ʈᵃᵢ 2020-10-15 14:12:21 -07:00 committed by GitHub
parent a720bba40e
commit 233e67a854
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -140,9 +140,14 @@ class Slice(
def datasource_name_text(self) -> Optional[str]:
# pylint: disable=no-member
if self.table:
if self.table.schema:
return f"{self.table.schema}.{self.table.table_name}"
return self.table.table_name
datasource = self.datasource
return datasource.name if datasource else None
if self.datasource:
if self.datasource.schema:
return f"{self.datasource.schema}.{self.datasource.name}"
return self.datasource.name
return None
@property
def datasource_edit_url(self) -> Optional[str]: