From a5276d5bd09d9258b72c7bf21874b48a88b98b45 Mon Sep 17 00:00:00 2001 From: Italo Date: Tue, 27 Apr 2021 16:07:32 -0300 Subject: [PATCH] Invert icons upload/download --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 5e6dc62..16b0606 100644 --- a/src/index.js +++ b/src/index.js @@ -11,7 +11,7 @@ const verifyRepoConfig = async (repo, context) => { module.exports.workspaceActions = [{ label: 'Repo Sync - Export Workspace', - icon: 'fa-download', + icon: 'fa-upload', action: async (context, models) => { const repo = new WorkspaceRepo(context); if (!await verifyRepoConfig(repo, context)) return; @@ -28,7 +28,7 @@ module.exports.workspaceActions = [{ }, { label: 'Repo Sync - Import Workspace', - icon: 'fa-upload', + icon: 'fa-download', action: async (context, models) => { const repo = new WorkspaceRepo(context); if (!await verifyRepoConfig(repo, context)) return;