Merge pull request #8833 from fredj/misc
Fix wrong filename in type annotation
This commit is contained in:
@@ -79,7 +79,7 @@ class Fill {
|
|||||||
const color = this.color_;
|
const color = this.color_;
|
||||||
if (color) {
|
if (color) {
|
||||||
if (Array.isArray(color) || typeof color == 'string') {
|
if (Array.isArray(color) || typeof color == 'string') {
|
||||||
this.checksum_ = 'f' + asString(/** @type {import("../Color.js").Color|string} */ (color));
|
this.checksum_ = 'f' + asString(/** @type {import("../color.js").Color|string} */ (color));
|
||||||
} else {
|
} else {
|
||||||
this.checksum_ = getUid(this.color_);
|
this.checksum_ = getUid(this.color_);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user