This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
OpenSource
/
dify
Watch
4
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
152
Wiki
Activity
Browse Source
fix: filter out installed apps without an app (
#7799
)
tags/0.7.3
YidaHu
1 year ago
parent
f0273f00e1
commit
bd6d4d0553
No account linked to committer's email address
1 changed files
with
1 additions
and
0 deletions
Split View
Show Diff Stats
1
0
api/controllers/console/explore/installed_app.py
+ 1
- 0
api/controllers/console/explore/installed_app.py
View File
@@ -35,6 +35,7 @@ class InstalledAppsListApi(Resource):
"uninstallable": current_tenant_id == installed_app.app_owner_tenant_id,
}
for installed_app in installed_apps
if installed_app.app is not None
]
installed_apps.sort(
key=lambda app: (
Write
Preview
Loading…
Cancel
Save