From 6709600ada8bcfba410c23fb6504f18b14efd433 Mon Sep 17 00:00:00 2001 From: Andres Date: Mon, 8 Jan 2024 17:52:51 -0800 Subject: [PATCH] Fix create and publish button functionality --- src/apps/content-editor/src/app/views/ItemCreate/ItemCreate.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/content-editor/src/app/views/ItemCreate/ItemCreate.tsx b/src/apps/content-editor/src/app/views/ItemCreate/ItemCreate.tsx index fd3fb10c3a..4630729a21 100644 --- a/src/apps/content-editor/src/app/views/ItemCreate/ItemCreate.tsx +++ b/src/apps/content-editor/src/app/views/ItemCreate/ItemCreate.tsx @@ -260,7 +260,7 @@ export const ItemCreate = () => { }, }).then(() => { // Retain non rtk-query fetch of item publishing for legacy code - dispatch(fetchItemPublishing(modelZUID, itemZUID)); + dispatch(fetchItemPublishing(modelZUID, newItemZUID)); }); };