We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5076e9f commit 00ba816Copy full SHA for 00ba816
1 file changed
lib/src/actions/filter.dart
@@ -239,9 +239,11 @@ class _CustomChip extends StatelessWidget {
239
onLongPress: onLongPress,
240
child: InputChip(
241
avatar: const Icon(Icons.edit),
242
- tooltip:
243
- label ??
244
- AppLocalizations.of(context)!.tooltipCustomFilterQueryChip(query!),
+ // TODO(aaron): The tooltip prevents the long press from working
+ //
+ // tooltip:
245
+ // label ??
246
+ // AppLocalizations.of(context)!.tooltipCustomFilterQueryChip(query!),
247
label: label != null
248
? Text(label!)
249
: ConstrainedBox(
0 commit comments