Hide item notes in reader

fix: #3941
This commit is contained in:
windingwind 2024-04-09 20:36:28 +08:00
parent 03d0ea4366
commit 8b37a9889a

View file

@ -53,6 +53,10 @@ import { getCSSItemTypeIcon } from 'components/icons';
}
set item(val) {
if (this.tabType !== "library") {
this.hidden = true;
return;
}
if (val?.isRegularItem() && !val?.isFeedItem) {
this.hidden = false;
}