mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Transform] Fix redirect to the wizard (#124337)
This commit is contained in:
parent
fcac5d60fe
commit
de9f1d4628
1 changed files with 1 additions and 1 deletions
|
@ -13,5 +13,5 @@ import { SECTION_SLUG } from '../constants';
|
|||
export const RedirectToTransformManagement: FC = () => <Redirect to={`/${SECTION_SLUG.HOME}`} />;
|
||||
|
||||
export const RedirectToCreateTransform: FC<{ savedObjectId: string }> = ({ savedObjectId }) => (
|
||||
<Redirect to={`/${SECTION_SLUG.CREATE_TRANSFORM}/${savedObjectId}`} />
|
||||
<Redirect push to={`/${SECTION_SLUG.CREATE_TRANSFORM}/${savedObjectId}`} />
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue