@fleet-frontend/mower-maps 0.2.0-beta.18 → 0.2.0-beta.19

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
@@ -202,7 +202,7 @@ class ObstacleData extends BaseData {
202
202
  this.status = originalData?.status ?? 1;
203
203
  this.start_timestamp = originalData?.start_timestamp;
204
204
  this.end_timestamp = originalData?.end_timestamp;
205
- this.name = originalData?.name || 'Obstacle';
205
+ this.name = originalData?.name || '';
206
206
  this.style = style;
207
207
  }
208
208
  }
package/dist/index.js CHANGED
@@ -222,7 +222,7 @@ class ObstacleData extends BaseData {
222
222
  this.status = originalData?.status ?? 1;
223
223
  this.start_timestamp = originalData?.start_timestamp;
224
224
  this.end_timestamp = originalData?.end_timestamp;
225
- this.name = originalData?.name || 'Obstacle';
225
+ this.name = originalData?.name || '';
226
226
  this.style = style;
227
227
  }
228
228
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fleet-frontend/mower-maps",
3
- "version": "0.2.0-beta.18",
3
+ "version": "0.2.0-beta.19",
4
4
  "type": "module",
5
5
  "description": "a mower maps in google maps",
6
6
  "main": "dist/index.js",