From 865ec0590979fcf48f6f4277e430b54c748a5056 Mon Sep 17 00:00:00 2001 From: Alex <41288429+Dvinyanin@users.noreply.github.com> Date: Wed, 29 Jun 2022 12:55:34 +0700 Subject: [PATCH] Add move action (#2164) Signed-off-by: Dvinyanin Alexandr --- models/tracker/src/index.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/models/tracker/src/index.ts b/models/tracker/src/index.ts index 1d58e0855f..7eda81f912 100644 --- a/models/tracker/src/index.ts +++ b/models/tracker/src/index.ts @@ -846,4 +846,22 @@ export function createModel (builder: Builder): void { }, tracker.action.CopyIssueLink ) + createAction( + builder, + { + action: view.actionImpl.Move, + label: view.string.Move, + icon: view.icon.Move, + keyBinding: [], + input: 'none', + category: tracker.category.Tracker, + target: tracker.class.Issue, + context: { + mode: ['context', 'browser'], + application: tracker.app.Tracker, + group: 'edit' + } + }, + tracker.action.CopyIssueLink + ) }