Skip to content

Commit

Permalink
fix: add schema name to datasource field in chart list (#11278)
Browse files Browse the repository at this point in the history
  • Loading branch information
nytai authored Oct 15, 2020
1 parent a720bba commit 233e67a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions superset/models/slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,14 @@ def datasource_url(self) -> Optional[str]:
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]:
Expand Down

0 comments on commit 233e67a

Please sign in to comment.