]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/3736'
authorTom Hughes <tom@compton.nu>
Thu, 6 Oct 2022 06:59:57 +0000 (07:59 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 6 Oct 2022 06:59:57 +0000 (07:59 +0100)
.github/workflows/docker.yml
.github/workflows/lint.yml
.github/workflows/tests.yml
app/assets/javascripts/leaflet.map.js

index 6f88614ab3cd93eda11c4e4edabb07524285c046..5f0f0f0786138ac2ae169affd5f31288129f3469 100644 (file)
@@ -3,7 +3,7 @@ on:
   - push
   - pull_request
 concurrency:
-  group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
+  group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
   cancel-in-progress: true
 jobs:
   test:
index 5b6668a840d95a261f8d171735ebf6c377ee736d..11a4c322ff65bff1434e8ef509eb3a282ffc626e 100644 (file)
@@ -3,7 +3,7 @@ on:
   - push
   - pull_request
 concurrency:
-  group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
+  group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
   cancel-in-progress: true
 env:
   os: ubuntu-20.04
index c1fa68072d2a39beefd6474c93557b6d7855c43e..79811c61242361c9517a7d9ed307b46ab8f9ddee 100644 (file)
@@ -3,7 +3,7 @@ on:
   - push
   - pull_request
 concurrency:
-  group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
+  group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
   cancel-in-progress: true
 jobs:
   test:
index 75396fd73013fefd67d63f634d7aad34ae8c9b9b..b2d4abcb72719fd4b93f4bd218c29e48ebaee441 100644 (file)
@@ -258,15 +258,15 @@ L.OSM.Map = L.Map.extend({
 
       this._object = object;
       this._objectLayer = L.featureGroup().addTo(this);
-      
+
       L.circleMarker(object.latLng, haloStyle).addTo(this._objectLayer);
-      
+
       L.marker(object.latLng, {
         icon: object.icon,
         opacity: 1,
         interactive: true
       }).addTo(this._objectLayer);
-      
+
       if (callback) callback(this._objectLayer.getBounds());
     } else { // element or changeset handled by L.OSM.DataLayer
       var map = this;