1
0
Fork 0

fix (designs) add missing measurements to design configs

This commit is contained in:
Enoch Riese 2023-06-20 18:18:39 -05:00
parent 6a222f254d
commit 64bffa5ff9
7 changed files with 29 additions and 5 deletions

View file

@ -176,7 +176,7 @@ Part.prototype.shorthand = function () {
get: function (measurements, name) {
if (typeof measurements[name] === 'undefined')
self.context.store.log.warning(
`Tried to access \`measurements.${name}\` but it is \`undefined\``
`${self.name} tried to access \`measurements.${name}\` but it is \`undefined\``
)
return Reflect.get(...arguments)
},