fix operations e tasks
Some checks failed
Build and Release FLUX (Multi-Platform) / build-windows (push) Successful in 6m20s
Build and Release FLUX (Multi-Platform) / build-android (push) Failing after 11m52s
Build and Release FLUX (Multi-Platform) / build-web (push) Successful in 1m0s

This commit is contained in:
2026-06-04 13:42:29 +02:00
parent 4efc3ce182
commit 5ce0110197
11 changed files with 129 additions and 103 deletions

View File

@@ -571,7 +571,7 @@ class _RichOperationCard extends StatelessWidget {
),
// Tag Gestore (Agganciato dinamicamente al displayColor generato dall'esadecimale del DB!)
if (operation.providerId != null)
if (operation.provider != null)
_MiniChip(
label: operation.provider?.name ?? 'Gestore',
color:

View File

@@ -138,13 +138,13 @@ class OperationDetailsSection extends StatelessWidget {
: 'Nessun gestore selezionato',
style: TextStyle(
color:
(currentOp?.providerId == null ||
currentOp!.providerId!.isEmpty)
(currentOp?.provider == null ||
currentOp!.provider!.name.isEmpty)
? Colors.grey
: null,
fontWeight:
(currentOp?.providerId == null ||
currentOp!.providerId!.isEmpty)
(currentOp?.provider == null ||
currentOp!.provider!.name.isEmpty)
? FontWeight.normal
: FontWeight.bold,
),