TF-4178 Add create new label modal

This commit is contained in:
dab246
2025-11-26 12:10:55 +07:00
committed by Dat H. Pham
parent f6f299dc97
commit d3029ec4de
16 changed files with 629 additions and 1 deletions
@@ -9,4 +9,8 @@ extension ListLabelExtension on List<Label> {
(label, otherLabel) => label.compareAlphabetically(otherLabel),
);
}
List<String> get displayNameNotNullList => map((label) => label.safeDisplayName)
.where((name) => name.isNotEmpty)
.toList();
}