fix: Incorrect date format in Add to mealplan modal #4605
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What type of PR is this?
bug
What this PR does / why we need it:
This PR resolves an issue with the date field hint in the "Add to Plan" dialog box. The hint initially displayed the date format as
MM/DD/YYYY
, which was inconsistent with the actual date format (YYYY-MM-DD
). This inconsistency could confuse users, especially since the field isreadonly
and uses a date picker.The hint has now been completely removed to simplify the UI and avoid redundancy.
Changes made:
:hint
andpersistent-hint
properties from the<v-text-field>
component for the date picker in the "Add to Plan" dialog box.Which issue(s) this PR fixes:
Fixes #4598
Special notes for your reviewer:
Testing:
readonly
and continues to function as intended.