Skip to content

Commit

Permalink
修正无法读取自定义属性的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Dec 6, 2024
1 parent 8b1561d commit b297a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editorTable/editorTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export class EditorObject<N extends Table.NameCN = Table.NameCN> {
if (key === 'name') {
return this.name;
}
let raw = this.rawGet(key);
let raw = this.rawGet(fieldInfo.field);
if (raw === undefined) {
return undefined;
}
Expand Down

0 comments on commit b297a4d

Please sign in to comment.