Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down