Skip to content

Commit

Permalink
Switch hints to labels in post creation page (#1515)
Browse files Browse the repository at this point in the history
  • Loading branch information
micahmo authored Aug 22, 2024
1 parent 36f95da commit d6b93e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/community/pages/create_post_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ class _CreatePostPageState extends State<CreatePostPage> {
controller: controller,
focusNode: focusNode,
decoration: InputDecoration(
hintText: l10n.postTitle,
labelText: l10n.postTitle,
helperText: l10n.requiredField,
isDense: true,
border: const OutlineInputBorder(),
Expand All @@ -459,7 +459,7 @@ class _CreatePostPageState extends State<CreatePostPage> {
TextFormField(
controller: _urlTextController,
decoration: InputDecoration(
hintText: l10n.postURL,
labelText: l10n.postURL,
errorText: urlError,
isDense: true,
border: const OutlineInputBorder(),
Expand Down Expand Up @@ -492,7 +492,7 @@ class _CreatePostPageState extends State<CreatePostPage> {
TextFormField(
controller: _customThumbnailTextController,
decoration: InputDecoration(
hintText: l10n.thumbnailUrl,
labelText: l10n.thumbnailUrl,
errorText: customThumbnailError,
isDense: true,
border: const OutlineInputBorder(),
Expand Down

0 comments on commit d6b93e9

Please sign in to comment.