Skip to content

Commit

Permalink
fix(task-management): remove unnecessary scope from sharedConfigStore…
Browse files Browse the repository at this point in the history
… call

Signed-off-by: Wanjin Noh <[email protected]>
  • Loading branch information
WANZARGEN committed Dec 20, 2024
1 parent c90d8ec commit 8dc95de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const useTaskManagementTemplateStore = defineStore('task-management-templ
const prev = state.templateId;
state.templateId = templateId;
try {
await sharedConfigStore.set<TemplateData>('TASK_TEMPLATE', { template_id: templateId }, 'DOMAIN');
await sharedConfigStore.set<TemplateData>('TASK_TEMPLATE', { template_id: templateId });
showSuccessMessage(i18n.t('OPSFLOW.ALT_S_EDIT_TARGET', { target: i18n.t('OPSFLOW.TASK_MANAGEMENT.TEMPLATE_TYPE') }), '');
} catch (e) {
ErrorHandler.handleRequestError(e, i18n.t('OPSFLOW.ALT_E_EDIT_TARGET', { target: i18n.t('OPSFLOW.TASK_MANAGEMENT.TEMPLATE_TYPE') }));
Expand Down

0 comments on commit 8dc95de

Please sign in to comment.