File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
lib/app_configuration/widgets Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ class ReportingSettingsForm extends StatelessWidget {
4848 const SizedBox (height: AppSpacing .lg),
4949 SwitchListTile (
5050 title: Text (l10n.enableHeadlineReportingLabel),
51+ subtitle: Text (l10n.enableHeadlineReportingDescription),
5152 value: reportingConfig.headlineReportingEnabled,
5253 onChanged: (value) {
5354 final newConfig = reportingConfig.copyWith (
@@ -66,6 +67,7 @@ class ReportingSettingsForm extends StatelessWidget {
6667 ),
6768 SwitchListTile (
6869 title: Text (l10n.enableSourceReportingLabel),
70+ subtitle: Text (l10n.enableSourceReportingDescription),
6971 value: reportingConfig.sourceReportingEnabled,
7072 onChanged: (value) {
7173 final newConfig = reportingConfig.copyWith (
@@ -84,6 +86,7 @@ class ReportingSettingsForm extends StatelessWidget {
8486 ),
8587 SwitchListTile (
8688 title: Text (l10n.enableCommentReportingLabel),
89+ subtitle: Text (l10n.enableCommentReportingDescription),
8790 value: reportingConfig.commentReportingEnabled,
8891 onChanged: (value) {
8992 final newConfig = reportingConfig.copyWith (
You can’t perform that action at this time.
0 commit comments