mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-27 12:30:13 +03:00
fix: add getattr fallback to show_filters_icon property for backward compatibility
This commit is contained in:
parent
a1f4942746
commit
31d8046e30
@ -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):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user