Skip to content

Commit

Permalink
Fix incorrect connection between date label and input
Browse files Browse the repository at this point in the history
This is a possible accessibility problem.
  • Loading branch information
Connor Gurney authored Oct 9, 2023
1 parent b01112b commit 2e06950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/journal/add.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</div>

<div class="form-group">
<label for="field-entry">{{ trans('journal.journal_add_date') }}</label>
<label for="field-date">{{ trans('journal.journal_add_date') }}</label>
<input type="date" id="field-date" name="date" class="form-control" value="{{ now(\App\Helpers\DateHelper::getTimezone())->toDateString() }}">
</div>

Expand Down

0 comments on commit 2e06950

Please sign in to comment.