We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 884f05c commit 32ed78eCopy full SHA for 32ed78e
src/lib/Tree.ts
@@ -470,8 +470,8 @@ export class Folder<L extends TItemLocation> {
470
Array(depth < 0 ? 0 : depth)
471
.fill(' ')
472
.join('') +
473
- `+ #${this.id}[${this.title}] parentId: ${this.parentId}, hash: ${this
474
- .hashValue[String(true)] || this.hashValue[String(false)]}\n` +
+ `+ #${this.id}[${this.title}] parentId: ${this.parentId}, hash: ${Object.values(this
+ .hashValue)[0]}\n` +
475
this.children
476
.map(child =>
477
child && child.inspect ? child.inspect(depth + 1) : String(child)
0 commit comments