container filter for tree view

This commit is contained in:
Fabian Freund
2026-01-04 10:26:57 +01:00
parent a99051235b
commit 77657ffd2d
6 changed files with 213 additions and 162 deletions
@@ -55,16 +55,19 @@ class TabTreeEntity extends TabEntity {
@override
final String tabId;
final String? containerId;
final String rootId;
final int totalTabs;
TabTreeEntity({
required this.tabId,
required this.containerId,
required this.rootId,
required this.totalTabs,
});
@override
List<Object?> get hashParameters => [tabId, rootId, totalTabs];
List<Object?> get hashParameters => [tabId, containerId, rootId, totalTabs];
}