chore: add missing string parameter

This commit is contained in:
Alexis Métaireau 2024-02-22 17:10:52 +01:00
parent f9175e98b9
commit 702713e768

View file

@ -45,7 +45,7 @@ U.FeatureMixin = {
this.addInteractions() this.addInteractions()
this.parentClass.prototype.initialize.call(this, latlng, options) this.parentClass.prototype.initialize.call(this, latlng, options)
}, },
_checkId: function () { _checkId: function (string) {
return typeof string !== 'undefined' return typeof string !== 'undefined'
}, },