Skip to content

Commit 55c7bf7

Browse files
committed
#RIVS-283 - fix pr comment
1 parent 492981a commit 55c7bf7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
"**/yarn.lock": true,
4242
"*.{css,sass,scss}.d.ts": true,
4343
"pnpm-lock.yaml": true,
44-
"**/pnpm-lock.yaml": true,
45-
// "src/webviews/public/customThemes.css": true,
44+
"**/pnpm-lock.yaml": true
4645
},
4746
"cSpell.words": ["githubocto", "tailwindcss", "webviews", "zustand"],
4847
"testing.automaticallyOpenPeekView": "never",

src/webviews/src/constants/external/links.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ export const EXTERNAL_LINKS = {
22
riAppDownload: 'https://redis.io/insight/',
33
jsonModule: 'https://redis.io/docs/latest/operate/oss_and_stack/stack-with-enterprise/json/',
44
tryFree: 'https://redis.io/try-free/',
5-
githubIssues: 'https://github.com/RedisInsight/Redis-for-VS-Code/',
5+
githubRepo: 'https://github.com/RedisInsight/Redis-for-VS-Code/',
6+
githubIssues: 'https://github.com/RedisInsight/Redis-for-VS-Code/issues/',
67
}
78

89
export const UTM_CAMPAIGNS = {

src/webviews/src/modules/key-details/components/unsupported-type-details/UnsupportedTypeDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const UnsupportedTypeDetails = () => (
1515
<Link
1616
target="_blank"
1717
className="pl-0"
18-
href={EXTERNAL_LINKS.githubIssues}
18+
href={EXTERNAL_LINKS.githubRepo}
1919
data-testid="unsupported-key-github-btn"
2020
>
2121
{l10n.t('supported data types.')}

0 commit comments

Comments
 (0)