diff --git a/public/app/features/folders/state/actions.ts b/public/app/features/folders/state/actions.ts index e98f48a7475..ed9d5b8ca89 100644 --- a/public/app/features/folders/state/actions.ts +++ b/public/app/features/folders/state/actions.ts @@ -28,7 +28,8 @@ export function saveFolder(folder: FolderState): ThunkResult { }); dispatch(notifyApp(createSuccessNotification('Folder saved'))); - locationService.push(`${res.url}/settings`); + dispatch(loadFolder(res)); + locationService.push(locationUtil.stripBaseFromUrl(`${res.url}/settings`)); }; }