Skip to content

Commit

Permalink
Prefix weather tag labels with "Weather: ".
Browse files Browse the repository at this point in the history
  • Loading branch information
igoramadas committed Sep 14, 2024
1 parent 2b9e29c commit 2c87e44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mixins/recipeMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ export default {
for (let t of weatherBaseTags) {
locationTags.push({
value: `weather.start.${t.value}`,
label: `${t.label} (start)`
label: `Weather: ${t.label} (start)`
})
locationTags.push({
value: `weather.${t.value}`,
label: `${t.label} (mid point)`
label: `Weather: ${t.label} (mid point)`
})
locationTags.push({
value: `weather.end.${t.value}`,
label: `${t.label} (end)`
label: `Weather: ${t.label} (end)`
})
}

Expand Down

0 comments on commit 2c87e44

Please sign in to comment.