Skip to content

Commit

Permalink
Fix Pin label bug
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-leech committed Jan 23, 2024
1 parent b9a8dac commit 9ad7756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/locations/entries/pin.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default entry => {
entry.location.Layers.push(entry.L)

const chkbox = mapp.ui.elements.chkbox({
label: `entry.label || ${mapp.dictionary.pin}`,
label: `${entry.label || mapp.dictionary.pin}`,
checked: true,//!!entry.display,
onchange: (checked) => {
entry.display = checked
Expand Down

0 comments on commit 9ad7756

Please sign in to comment.