From 5086f45cc1e086217215163faf152046e34c573d Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Mon, 18 May 2020 18:24:04 +0200 Subject: [PATCH] Fix bad check --- lib/ui/widgets/survey_widget.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/widgets/survey_widget.dart b/lib/ui/widgets/survey_widget.dart index 544a4f0..6b1c6c2 100644 --- a/lib/ui/widgets/survey_widget.dart +++ b/lib/ui/widgets/survey_widget.dart @@ -45,7 +45,7 @@ class _SurveyWidgetState extends SafeState { _buildUserResponse(), // Offer to block the creation of new responses, if possible - survey.allowNewChoicesCreation + survey.canBlockNewChoicesCreation ? _buildBlockNewResponsesLink() : Container(),