Skip to content

Commit 574fbff

Browse files
committed
🤖 GITHUB ACTIONS format_prettier
1 parent 35441b5 commit 574fbff

3 files changed

Lines changed: 18 additions & 12 deletions

File tree

‎SUPPORTED_BROWSERS.md‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
> This file is auto-generated from `.browserslistrc` during the prebuild step. Do not edit manually.
44
5-
| Browser | Minimum version |
6-
|---------|-----------------|
7-
| Android WebView | 145 or newer |
8-
| Apple Safari | 17 or newer |
9-
| Google Chrome | 117 or newer |
10-
| Microsoft Edge | 117 or newer |
11-
| Mozilla Firefox | 116 or newer |
12-
| Opera | 103 or newer |
13-
| Opera Mobile | 80 or newer |
14-
| Samsung Internet | 24 or newer |
5+
| Browser | Minimum version |
6+
| ---------------- | --------------- |
7+
| Android WebView | 145 or newer |
8+
| Apple Safari | 17 or newer |
9+
| Google Chrome | 117 or newer |
10+
| Microsoft Edge | 117 or newer |
11+
| Mozilla Firefox | 116 or newer |
12+
| Opera | 103 or newer |
13+
| Opera Mobile | 80 or newer |
14+
| Samsung Internet | 24 or newer |

‎scripts/new-relic.postbuild.ts‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ function getNewRelicContentHash(): string {
2121
return newRelicContentHash
2222
}
2323
const code = getNewRelicCode()
24-
newRelicContentHash = createHash('sha256').update(code).digest('hex').slice(0, 16)
24+
newRelicContentHash = createHash('sha256')
25+
.update(code)
26+
.digest('hex')
27+
.slice(0, 16)
2528
return newRelicContentHash
2629
}
2730

‎src/app/core/onetrust/onetrust-accessibility.service.ts‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,10 @@ export class OneTrustAccessibilityService implements OnDestroy {
211211
}
212212

213213
private _restorePolicyLinkTabIndex(): void {
214-
if (!this._policyLinkElement || !this._document.contains(this._policyLinkElement)) {
214+
if (
215+
!this._policyLinkElement ||
216+
!this._document.contains(this._policyLinkElement)
217+
) {
215218
this._policyLinkElement = null
216219
this._policyLinkOriginalTabIndex = undefined
217220
return

0 commit comments

Comments
 (0)