fix: reportEvent uses positive int

This commit is contained in:
Christian Pauly 2021-02-01 22:00:41 +01:00
parent baafebb5f9
commit 408c8109f9
1 changed files with 2 additions and 2 deletions

View File

@ -312,11 +312,11 @@ class _ChatState extends State<Chat> {
title: L10n.of(context).howOffensiveIsThisContent, title: L10n.of(context).howOffensiveIsThisContent,
actions: [ actions: [
AlertDialogAction( AlertDialogAction(
key: 100, key: -100,
label: L10n.of(context).extremeOffensive, label: L10n.of(context).extremeOffensive,
), ),
AlertDialogAction( AlertDialogAction(
key: 50, key: -50,
label: L10n.of(context).offensive, label: L10n.of(context).offensive,
), ),
AlertDialogAction( AlertDialogAction(