diff --git a/lib/dashbot/features/chat/viewmodel/chat_viewmodel.dart b/lib/dashbot/features/chat/viewmodel/chat_viewmodel.dart index 3f5ce3ad..eaad1b2d 100644 --- a/lib/dashbot/features/chat/viewmodel/chat_viewmodel.dart +++ b/lib/dashbot/features/chat/viewmodel/chat_viewmodel.dart @@ -283,7 +283,12 @@ class ChatViewmodel extends StateNotifier { .map( (e) => NameValueModel(name: e.key, value: e.value.toString())) .toList(); - collectionNotifier.update(params: params, id: requestId); + final enabled = List.filled(params.length, true); + collectionNotifier.update( + params: params, + isParamEnabledList: enabled, + id: requestId, + ); } break; }