We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da19da commit a9a4e09Copy full SHA for a9a4e09
redisinsight/ui/src/telemetry/pageViews.ts
@@ -4,5 +4,5 @@ export enum TelemetryPageView {
4
SETTINGS_PAGE = 'Settings',
5
BROWSER_PAGE = 'Browser',
6
WORKBENCH_PAGE = 'Workbench',
7
- SLOWLOG_PAGE = 'Slowlog'
+ SLOWLOG_PAGE = 'Slow Log'
8
}
redisinsight/ui/src/telemetry/segment.ts
@@ -32,7 +32,11 @@ export class SegmentTelemetryService implements ITelemetryService {
32
33
if (!isWebApp) {
34
pageObject.page = {
35
- path: '', url: '', title: globalThis.document.title
+ path: '', url: '', title: ''
36
+ }
37
+ } else {
38
+ pageObject.page = {
39
+ ...pageObject.page, title: ''
40
41
42
0 commit comments