From 35b473d8d30e3ebd36789b66f06c3e77c666cb94 Mon Sep 17 00:00:00 2001 From: Morlinest Date: Wed, 13 Sep 2017 18:02:37 +0200 Subject: [PATCH] Remove repository mirrors from "collaborative" list (#2497) --- public/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/index.js b/public/js/index.js index 732beaca0..dc2a09c9e 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1768,7 +1768,7 @@ function initVueComponents(){ case 'mirrors': return repo.mirror; case 'collaborative': - return repo.owner.id != this.uid; + return repo.owner.id != this.uid && !repo.mirror; default: return true; }