Skip to content

Commit ab05d71

Browse files
Ruschiostepankuzmin
authored andcommitted
Fix object-shorthand lint error
Fix object-shorthand lint error
1 parent 8673c7e commit ab05d71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/source/geojson_source.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ class GeoJSONSource extends Evented<SourceEvents> implements ISource {
290290
* ]);
291291
*/
292292
setFilter(filter: Array): this {
293-
this.workerOptions = extend({filter: filter}, this.workerOptions);
293+
this.workerOptions = extend({filter}, this.workerOptions);
294294
this._updateWorkerData();
295295
return this;
296296
}

0 commit comments

Comments
 (0)