windingwind / zotero-plugin-toolkit

Toolkit for Zotero Plugin Developers.
https://www.npmjs.com/package/zotero-plugin-toolkit
MIT License
104 stars 13 forks source link

Fix bug: itemTree.ts #28

Closed MuiseDestiny closed 1 year ago

MuiseDestiny commented 1 year ago
const dataKey = column.dataKey.split("-").slice(-1)[0]
if (!(dataKey in globalCache.renderCellHooks)) {
    // @ts-ignore
    return original.apply(this, arguments);
}
const hook = globalCache.renderCellHooks[dataKey];