@topconsultnpm/sdkui-react 6.20.0-dev1.107 → 6.20.0-dev1.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/helper/helpers.js +1 -2
- package/package.json +1 -1
package/lib/helper/helpers.js
CHANGED
|
@@ -964,14 +964,13 @@ export const getBrowserAuditInfo = () => {
|
|
|
964
964
|
userAgent: navigator.userAgent,
|
|
965
965
|
toString() {
|
|
966
966
|
return [
|
|
967
|
-
`[BROWSER AUDIT INFO]`,
|
|
968
967
|
`Browser: ${this.name} ${this.version}`,
|
|
969
968
|
`OS: ${this.os}`,
|
|
970
969
|
`Language: ${this.language}`,
|
|
971
970
|
`Timezone: ${this.timezone}`,
|
|
972
971
|
`Screen: ${this.screenWidth}x${this.screenHeight} (${this.colorDepth}bit, ${this.pixelRatio}x)`,
|
|
973
972
|
`Viewport: ${this.viewportWidth}x${this.viewportHeight}`,
|
|
974
|
-
`Features: Cookies=${this.cookiesEnabled}, Online=${this.onlineStatus}, Touch=${this.touchSupport}`,
|
|
973
|
+
// `Features: Cookies=${this.cookiesEnabled}, Online=${this.onlineStatus}, Touch=${this.touchSupport}`,
|
|
975
974
|
`UserAgent: ${this.userAgent}`
|
|
976
975
|
].join(' | ');
|
|
977
976
|
},
|