@fleet-frontend/mower-maps 0.2.0-beta.25 → 0.2.0-beta.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -201,7 +201,7 @@ class ObstacleData extends BaseData {
201
201
  this.status = originalData?.status ?? 1;
202
202
  this.start_timestamp = originalData?.start_timestamp;
203
203
  this.end_timestamp = originalData?.end_timestamp;
204
- this.name = originalData?.name || '';
204
+ this.name = originalData?.name || 'Noname';
205
205
  this.style = style;
206
206
  }
207
207
  }
package/dist/index.js CHANGED
@@ -221,7 +221,7 @@ class ObstacleData extends BaseData {
221
221
  this.status = originalData?.status ?? 1;
222
222
  this.start_timestamp = originalData?.start_timestamp;
223
223
  this.end_timestamp = originalData?.end_timestamp;
224
- this.name = originalData?.name || '';
224
+ this.name = originalData?.name || 'Noname';
225
225
  this.style = style;
226
226
  }
227
227
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fleet-frontend/mower-maps",
3
- "version": "0.2.0-beta.25",
3
+ "version": "0.2.0-beta.26",
4
4
  "type": "module",
5
5
  "description": "a mower maps in google maps",
6
6
  "main": "dist/index.js",