Skip to content

Commit 576ab66

Browse files
Merge pull request #2579 from RedisInsight/fe/bugfix/RI-4933_tutorial_not_open_in_a_new_window
#RI-4933 - Specific tutorial/guide not expanded in new window when op…
2 parents 536fbe8 + c45cb29 commit 576ab66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redisinsight/desktop/src/utils/resolveHtmlPath.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const resolveHtmlPath = (htmlFileName: string, parsedDeepLink?: IParsedDe
2626
['target', parsedDeepLink.target || ''],
2727
])
2828

29-
resolved += `?${queryParameters.toString()}`
29+
resolved += `${resolved.indexOf('?') !== -1 ? '&' : '?'}${queryParameters.toString()}`
3030
} catch (e) {
3131
// todo: log error
3232
}

0 commit comments

Comments
 (0)