mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 10:08:02 -06:00
fix: fix typo
This commit is contained in:
@@ -268,7 +268,7 @@ class _FullscreenLabelFormState<T extends Label> extends State<FullscreenLabelFo
|
|||||||
selectedTileColor: Theme.of(context).focusColor,
|
selectedTileColor: Theme.of(context).focusColor,
|
||||||
title: Text(widget.options[id]!.name),
|
title: Text(widget.options[id]!.name),
|
||||||
onTap: onTap,
|
onTap: onTap,
|
||||||
enabled: widget.allowSelectUnassigned ? true : widget.options[id]!.documentCount == 0,
|
enabled: widget.allowSelectUnassigned ? true : widget.options[id]!.documentCount != 0,
|
||||||
),
|
),
|
||||||
)!; // Never null, since we already return on unset before
|
)!; // Never null, since we already return on unset before
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user