fix: add getattr fallback to show_filters_icon property for backward compatibility

This commit is contained in:
YueGuobin 2026-05-23 17:09:50 +08:00
parent a1f4942746
commit 31d8046e30
No known key found for this signature in database

View File

@ -103,7 +103,7 @@ class Link:
"""
Get whether to show filters icon in Web UI
"""
return self._show_filters_icon
return getattr(self, '_show_filters_icon', True)
@property
def project(self):