We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad223a commit c4852a3Copy full SHA for c4852a3
packages/layout/src/lib/cookie-consent/cookie-consent.conf.ts
@@ -16,8 +16,10 @@ export const DEFAULT_CONSENT_CONFIG: CookieConsentConfig = {
16
expiryDays: 365,
17
},
18
elements: {
19
- messagelink: '<p id="cookieconsent:desc">{{message}} <a aria-label="learn more about cookies" tabindex="0" href="{{href}}" target="_blank">{{link}}</a></p>', // tslint:disable-line:max-line-length
+ /* tslint:disable:max-line-length */
20
+ messagelink: '<p id="cookieconsent:desc">{{message}} <a aria-label="learn more about cookies" tabindex="0" href="{{href}}" target="_blank">{{link}}</a></p>',
21
dismiss: '<button aria-label="dismiss cookie message" tabindex="0" class="a-button a-button--secondary cc-btn cc-dismiss">{{dismiss}}</button>',
22
+ /* tslint:enable:max-line-length */
23
24
};
25
0 commit comments