Skip to content

Commit

Permalink
fix: z6 item box bug
Browse files Browse the repository at this point in the history
  • Loading branch information
windingwind committed Jul 26, 2023
1 parent 0448a85 commit fe240a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions addon/manifest.json
Expand Up @@ -12,8 +12,8 @@
"zotero": {
"id": "__addonID__",
"update_url": "__updaterdf__",
"strict_min_version": "6.999",
"strict_max_version": "7.0.*"
"strict_min_version": "6.0.*",
"strict_max_version": "6.999"
}
}
}
2 changes: 1 addition & 1 deletion src/modules/itemBox.ts
Expand Up @@ -28,7 +28,7 @@ export async function registerItemBoxExtraRows() {
return ztoolkit.ExtraField.getExtraField(item, field) || "";
},
{
editable: true,
editable: false,
setFieldHook: (field, value, loadIn, item, original) => {
ztoolkit.ExtraField.setExtraField(item, field, value);
return true;
Expand Down

0 comments on commit fe240a1

Please sign in to comment.