Fix more broken/missed references

This commit is contained in:
DominikDoom
2025-07-10 19:03:09 +02:00
parent d1cb5269f6
commit 0608706e7d
3 changed files with 4 additions and 4 deletions

View File

@@ -242,7 +242,7 @@ class TacUtils {
memo,
Object.prototype.toString.call(obj[prop]) === "[object Object]"
? // keep working if value is an object
flatten(obj[prop], roots.concat([prop]), sep)
this.flatten(obj[prop], roots.concat([prop]), sep)
: // include current prop and value and prefix prop with the roots
{ [roots.concat([prop]).join(sep)]: obj[prop] }
),