From d4ee26caf8435f40296b99a605c0e1bbfc339b25 Mon Sep 17 00:00:00 2001 From: Sanja Date: Thu, 13 Feb 2025 12:15:04 -0800 Subject: [PATCH] Fix: Correct variable assignment for template creation on recent assets page Updated variable from 'this.processId' to 'this.assetId' to properly handle template creation. This resolves an issue where templates were not being created correctly due to improper variable settings. --- resources/js/processes/designer/RecentAssetsList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/processes/designer/RecentAssetsList.vue b/resources/js/processes/designer/RecentAssetsList.vue index d0208130fc..5e254cc75e 100644 --- a/resources/js/processes/designer/RecentAssetsList.vue +++ b/resources/js/processes/designer/RecentAssetsList.vue @@ -304,7 +304,7 @@ export default { * open modal to create template */ showCreateTemplateModal(name, id) { - this.processId = id; + this.assetId = id; this.processTemplateName = name; this.$refs["create-template-modal"].show(); },