From 367b56e3e4feea9b9a9859e092f0f7b59c33a091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=BDeby?= Date: Wed, 13 Sep 2017 17:15:36 +0200 Subject: [PATCH] Remove repository mirrors from "collaborative" list --- 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 732beaca0cb64..dc2a09c9edf6e 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; }