From 9793d1da4462a30281fa8aa894986f7319c31dbe Mon Sep 17 00:00:00 2001 From: Maxim Pekurin Date: Sun, 17 Jun 2018 20:41:28 +0300 Subject: [PATCH] Adds GitLab icon --- src/git/remotes/gitlab.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/git/remotes/gitlab.ts b/src/git/remotes/gitlab.ts index 6cc1c2c..64e3596 100644 --- a/src/git/remotes/gitlab.ts +++ b/src/git/remotes/gitlab.ts @@ -16,6 +16,10 @@ export class GitLabService extends RemoteProvider { super(domain, path, protocol, name, custom); } + get icon() { + return 'gitlab'; + } + get name() { return this.formatName('GitLab'); }