From 72177fb105a78b1a32e5b9d3cd4f4f7292099165 Mon Sep 17 00:00:00 2001 From: KhalO Date: Thu, 5 Dec 2024 19:53:07 -0500 Subject: [PATCH 1/3] fix: code displayed as plain text --- src/containers/apps/appDetails/deploy/Deployment.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/containers/apps/appDetails/deploy/Deployment.tsx b/src/containers/apps/appDetails/deploy/Deployment.tsx index 19f33df4..b0d63147 100644 --- a/src/containers/apps/appDetails/deploy/Deployment.tsx +++ b/src/containers/apps/appDetails/deploy/Deployment.tsx @@ -145,9 +145,13 @@ export default class Deployment extends ApiComponent< {localize('apps.link_see_here', '(here)')} .{' '} - {localize( - 'apps.deploy_cli_description_part2', - "If you're using CI/CD to run caprover deploy and you do not wish to use your password, you can use app-specific tokens" + {Utils.formatText( + localize( + 'apps.deploy_cli_description_part2', + "If you're using CI/CD to run %s and you do not wish to use your password, you can use app-specific tokens" + ), + ['%s'], + [caprover deploy] )}{' '} {localize('apps.link_see_here', '(here)')} From 28e466000d4e51766fa0c99956a17493fda3ac7c Mon Sep 17 00:00:00 2001 From: KhalO Date: Thu, 5 Dec 2024 19:53:07 -0500 Subject: [PATCH 2/3] fix: code displayed as plain text --- .gitignore | 40 +++++++++++----------------------------- 1 file changed, 11 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 8af6864b..9727fd8e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,29 +1,11 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# production -/build - -# misc -.DS_Store -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* -/.project -cypress/videos/ -.idea - -public/dark-theme.css -public/light-theme.css +/nbproject/ +/.idea/* +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache +*.sublime-workspace +*.sublime-project +node_modules/ +bin/ +obj/ +.vs/ From b0776a6c9a1c89947ffc7db07f5faa0ab7c3dd75 Mon Sep 17 00:00:00 2001 From: KhalO Date: Sat, 5 Jul 2025 02:05:25 +0000 Subject: [PATCH 3/3] fix: code displayed as plain text --- .gitignore | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9727fd8e..a1ca6fed 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,3 @@ *.stTheme.cache *.sublime-workspace *.sublime-project -node_modules/ -bin/ -obj/ -.vs/