mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 00:07:54 -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,
|
||||
title: Text(widget.options[id]!.name),
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user