Skip to content

Commit 451a765

Browse files
committed
Fix image URL in JS
1 parent 8d31987 commit 451a765

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/issues_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def kml(
239239
E.IconStyle(
240240
E.Icon(
241241
E.href(
242-
"https://osmose.openstreetmap.fr/images/markers/marker-b-1070.png"
242+
"https://osmose.openstreetmap.fr/api/0.3/assets/markers/marker-b-1070.png"
243243
)
244244
),
245245
),

web/src/components/issues-list.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ export default VueParent.extend({
304304
},
305305
306306
getMakerImgSrc(issue: Issue) {
307-
return API_URL + `/images/markers/marker-l-${issue.item}.png`
307+
return API_URL + `/api/0.3/assets/markers/marker-l-${issue.item}.png`
308308
},
309309
310310
issue_action(event: MouseEvent) {

0 commit comments

Comments
 (0)