From a5a02a0d116a1a9a09596d4a29f5f491dda1b16d Mon Sep 17 00:00:00 2001 From: nabim777 Date: Mon, 4 Mar 2024 12:32:11 +0545 Subject: [PATCH] change url for groupfolder apps on admin tab Signed-off-by: nabim777 --- src/components/AdminSettings.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/AdminSettings.vue b/src/components/AdminSettings.vue index 352a3daf4..5c3e8b51d 100644 --- a/src/components/AdminSettings.vue +++ b/src/components/AdminSettings.vue @@ -617,11 +617,12 @@ export default { } }, projectFolderSetUpErrorMessageDescription(errorKey) { - const linkText = t('integration_openproject', 'from here') - const htmlLink = `${linkText}` + const linkText = t('integration_openproject', 'Download and enable') + const url = generateUrl('settings/apps/files/groupfolders') + const htmlLink = `${linkText}` switch (errorKey) { case 'The "Group folders" app is not installed' : - return t('integration_openproject', 'Please install the "Group folders" app to be able to use automatic managed folders or deactivate the automatically managed folders. You can download and install the "Group folders" app {htmlLink}.', { htmlLink }, null, { escape: false, sanitize: false }) + return t('integration_openproject', 'Please install the "Group folders" app to be able to use automatic managed folders or deactivate the automatically managed folders. {htmlLink} "Group folders" app.', { htmlLink }, null, { escape: false, sanitize: false }) default: return this.errorHintForProjectFolderConfigAlreadyExists }