Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanboniface committed Nov 13, 2024
1 parent 5255765 commit c853cbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions umap/static/umap/js/modules/data/layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1080,14 +1080,14 @@ export class DataLayer extends ServerStored {
formData.append('geojson', blob)
console.log(
'map_id',
this.map.options.umap_id,
this._umap.properties.umap_id,
'pk',
this.umap_id || this._future_uuid,
'created',
this.createdOnServer
)
const saveURL = this._map.urls.get('datalayer_save', {
map_id: this._map.properties.umap_id,
const saveURL = this._umap.urls.get('datalayer_save', {
map_id: this._umap.properties.umap_id,
pk: this.umap_id || this._future_uuid,
created: this.createdOnServer,
})
Expand Down

0 comments on commit c853cbc

Please sign in to comment.