TF-4229 Add isSelected && condition to non-RTL selectedIconWidget rendering to match RTL behavior.

This commit is contained in:
dab246
2026-01-07 16:35:07 +07:00
committed by Dat H. Pham
parent 916fee92c4
commit f9ff9ecde7
10 changed files with 22 additions and 23 deletions
@@ -23,10 +23,12 @@ mixin ProvisioningLabelScenarioMixin {
final accountId = dashboardController?.accountId.value;
final labelController = dashboardController?.labelController;
if (createLabelInteractor == null || accountId == null) {
if (dashboardController == null ||
createLabelInteractor == null ||
accountId == null) {
log(
'ProvisioningLabelScenarioMixin::provisionLabels '
'skipped: missing CreateNewLabelInteractor or accountId',
'skipped: missing dashboardController, CreateNewLabelInteractor, or accountId',
);
return [];
}