WebUI: Handle folders when updating RSS feed url

Follow up to #21371 ([context](https://github.com/qbittorrent/qBittorrent/pull/21371#discussion_r1780908605)).

PR #21437.
This commit is contained in:
Thomas Piccirello
2024-10-11 22:30:24 -07:00
committed by GitHub
parent 2d185dc1c7
commit b1fd61af3a
2 changed files with 14 additions and 3 deletions

View File

@@ -648,6 +648,7 @@ window.qBittorrent.ContextMenu ??= (() => {
this.hideItem("update");
this.hideItem("markRead");
this.hideItem("rename");
this.hideItem("edit");
this.hideItem("delete");
this.showItem("newSubscription");
this.showItem("newFolder");
@@ -660,6 +661,7 @@ window.qBittorrent.ContextMenu ??= (() => {
this.showItem("update");
this.showItem("markRead");
this.hideItem("rename");
this.hideItem("edit");
this.hideItem("delete");
this.showItem("newSubscription");
this.hideItem("newFolder");
@@ -671,6 +673,7 @@ window.qBittorrent.ContextMenu ??= (() => {
this.showItem("update");
this.showItem("markRead");
this.showItem("rename");
this.hideItem("edit");
this.showItem("delete");
this.showItem("newSubscription");
this.showItem("newFolder");
@@ -682,6 +685,7 @@ window.qBittorrent.ContextMenu ??= (() => {
this.showItem("update");
this.showItem("markRead");
this.showItem("rename");
this.showItem("edit");
this.showItem("delete");
this.showItem("newSubscription");
this.hideItem("newFolder");
@@ -694,6 +698,7 @@ window.qBittorrent.ContextMenu ??= (() => {
this.showItem("update");
this.showItem("markRead");
this.hideItem("rename");
this.hideItem("edit");
this.showItem("delete");
this.hideItem("newSubscription");
this.hideItem("newFolder");