We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ff300 commit a81eca2Copy full SHA for a81eca2
sonar/portfolios.py
@@ -170,7 +170,8 @@ def reload_sub_portfolios(self) -> None:
170
return
171
self._sub_portfolios = {}
172
for data in self._json["subViews"]:
173
- self.load_sub_portfolio(data.copy())
+ if data["qualifier"] in ("VW", "SVW"):
174
+ self.load_sub_portfolio(data.copy())
175
176
def load_selection_mode(self) -> None:
177
"""Loads the portfolio selection mode"""
0 commit comments