mirror of
https://github.com/apache/superset.git
synced 2026-04-18 15:44:57 +00:00
[dashboard] New, list view (react) (#8845)
* adds dashboard listview component * use new api * use json over rison * lint * adds seperate dashboard list view * edit and delete actions * fix lint ignore * fix common_bootstrap_payload is now a function * fix license * fix pylint * isort * fix tests * lint * lint ts * fix js tests * fix double import from bad rebase * fix indent error * lookup permissions * generic permission lookup * get tslint to pass * adds js specs * lint * fix rebase * lint * lint again * fix type errors preventing build * adds more specs * fix tslint error * fix null check * remove unecessary code * use translations provided by api * more translations * linting * fix spec * i18n * fix register order
This commit is contained in:
@@ -191,13 +191,6 @@ class Dashboard( # pylint: disable=too-many-instance-attributes
|
||||
return ""
|
||||
return f"/superset/profile/{self.changed_by.username}"
|
||||
|
||||
@property
|
||||
def owners_json(self) -> List[Dict[str, Any]]:
|
||||
owners = []
|
||||
for owner in self.owners:
|
||||
owners.append({"name": owner.name})
|
||||
return owners
|
||||
|
||||
@property
|
||||
def data(self) -> Dict[str, Any]:
|
||||
positions = self.position_json
|
||||
|
||||
Reference in New Issue
Block a user