From 8fa305bedc0e9b98c3822cb958d32c62a9d2a91f Mon Sep 17 00:00:00 2001 From: Robert Zhou Date: Sat, 13 Apr 2024 07:01:15 -0700 Subject: [PATCH] Match MultiView collab behavior to regular video view --- src/components/multiview/VideoSelector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/multiview/VideoSelector.vue b/src/components/multiview/VideoSelector.vue index ff3ffb428..dc20a6185 100644 --- a/src/components/multiview/VideoSelector.vue +++ b/src/components/multiview/VideoSelector.vue @@ -248,7 +248,7 @@ export default { ignoreBlock: false, // only hide collabs when favorites tab hideCollabs: this.shouldHideCollabs, - forOrg: this.isRealOrg && this.selectedOrg.name, + forOrg: this.isRealOrg ? this.selectedOrg.name : "none", hideIgnoredTopics: true, hidePlaceholder: this.hidePlaceholder, hideMissing: this.hideMissing,