diff --git a/app/sc_ext/modules/launcher/providers/ContentEditorCommandsProvider.ts b/app/sc_ext/modules/launcher/providers/ContentEditorCommandsProvider.ts index d94bf91..3f2ad40 100644 --- a/app/sc_ext/modules/launcher/providers/ContentEditorCommandsProvider.ts +++ b/app/sc_ext/modules/launcher/providers/ContentEditorCommandsProvider.ts @@ -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); } };