Skip to content

Commit

Permalink
#128 | Launcher: Open item in new tab on Ctrl + Enter
Browse files Browse the repository at this point in the history
fixed broken QA parameter
  • Loading branch information
alan-null committed Nov 7, 2020
1 parent 429c1b8 commit 4d76701
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace SitecoreExtensions.Modules.Launcher.Providers {
let command = new DynamicCommand(name, description, "");
command.executeCallback = (cmd: DynamicCommand, evt: UserActionEvent) => {
if (cmd.ItemId) {
let tempCommand = new NavigationCommand("", "", "/sitecore/shell/Applications/Content%20Editor.aspx?sc_bw=1&fo" + cmd.ItemId);
let tempCommand = new NavigationCommand("", "", "/sitecore/shell/Applications/Content%20Editor.aspx?sc_bw=1&fo=" + cmd.ItemId);
tempCommand.execute({ ctrlKey: true } as UserActionEvent);
}
};
Expand Down

0 comments on commit 4d76701

Please sign in to comment.