From 5508c80086fe858eb1de7364a338b53d2af75f9e Mon Sep 17 00:00:00 2001 From: Prasad <prasad@vtiger.com> Date: Mon, 15 Apr 2024 17:34:36 +0530 Subject: [PATCH] Fixes: JS alert message format in reference record create handler --- layouts/v7/modules/Vtiger/resources/Vtiger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/v7/modules/Vtiger/resources/Vtiger.js b/layouts/v7/modules/Vtiger/resources/Vtiger.js index 2056278a6..3d1369226 100644 --- a/layouts/v7/modules/Vtiger/resources/Vtiger.js +++ b/layouts/v7/modules/Vtiger/resources/Vtiger.js @@ -1230,7 +1230,7 @@ Vtiger.Class('Vtiger_Index_Js', { var quickCreateNode = jQuery('#quickCreateModules').find('[data-name="'+ referenceModuleName +'"]'); if(quickCreateNode.length <= 0) { var notificationOptions = { - 'title' : app.vtranslate('JS_NO_CREATE_OR_NOT_QUICK_CREATE_ENABLED') + 'message' : app.vtranslate('JS_NO_CREATE_OR_NOT_QUICK_CREATE_ENABLED') } app.helper.showAlertNotification(notificationOptions); } -- GitLab