-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIM-1887 gtag and GA_TRACKING_ID removal (#2769)
* highchart.es6 gtag removal * AttachmentTablesFigures gtag removal * Highchart.jsx gtag removal * links.tsx gtag removal * Table.tsx gtag removal * nameSearch.jsx gtag removal * searchResultView.tsx gtag removal * error.html gtag removal * ReactGA.tsx removal of file * react-ga dependency removal * GA_TRACKING_ID removal from all files * Bump google-github-actions/auth from 2.1.2 to 2.1.3 (#2757) Bumps [google-github-actions/auth](https://github.com/google-github-actions/auth) from 2.1.2 to 2.1.3. - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](google-github-actions/auth@v2.1.2...v2.1.3) --- updated-dependencies: - dependency-name: google-github-actions/auth dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update version number to v2.8.2 * [MIM-1950] MIM-1950:Fikset bug med tidssone for kommende publiseringer (#2756) MIM-1950:Fikset bug med tidssone for kommende publiseringer * Change env name in github action to make jira integration work properly (#2764) * [MIM-1915] Added macro config for keyFigure (#2759) * added macro config for keyFigure * added styling to fix gap to text * fixed formatting * [MIM-1887] Mim 1887 removal of universal analytics (#2763) * Updated comment for GA4 gtag config * Fjernet UA script * Changes to Commits * Added type for renderShowButton onKeyDown event * default.html - UA SCRIPT final removal --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GitHub Actions Bot <> Co-authored-by: Carina <47381367+ssb-cgn@users.noreply.github.com> Co-authored-by: Anne-Siri <142512638+annesiri@users.noreply.github.com>
- Loading branch information
1 parent
021f809
commit 16373f4
Showing
26 changed files
with
23 additions
and
242 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,5 +52,4 @@ export interface NameSearchProps { | |
close: string | ||
} | ||
language: string | ||
GA_TRACKING_ID: string | null | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html data-th-lang="${language.code}"> | ||
<head> | ||
<script async="true" data-th-if="${GA_TRACKING_ID}" data-th-src="|https://www.googletagmanager.com/gtag/js?id=${GA_TRACKING_ID}|"></script> | ||
<script th:inline="javascript" data-th-if="${GA_TRACKING_ID}"> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
gtag('config', /*[[${GA_TRACKING_ID}]]*/); | ||
</script> | ||
|
||
<meta http-equiv="Content-Type" content="text/html;" charset="UTF-8"/> | ||
<title data-th-text="${pageTitle}">Side ikke funnet / Page not found</title> | ||
<meta name="viewport" content="width=device-width"/> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans%7COpen+Sans:700%7CRoboto:700%7CRoboto+Condensed:700"/> | ||
<link rel="stylesheet" data-th-href="${stylesUrl}"/> | ||
<link rel="alternate" data-th-if="${alternateLanguageVersionUrl}" data-th-href="${alternateLanguageVersionUrl}" data-th-hreflang="${language.alternate}"/> | ||
</head> | ||
<body class="xp-page" data-th-classappend="${bodyClasses}"> | ||
<div class="container"> | ||
<div data-th-utext="${contentHtml}" data-th-remove="tag"></div> | ||
</div> | ||
</body> | ||
</html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html;" charset="UTF-8" /> | ||
<title data-th-text="${pageTitle}">Side ikke funnet / Page not found</title> | ||
<meta name="viewport" content="width=device-width" /> | ||
<link rel="stylesheet" | ||
href="https://fonts.googleapis.com/css?family=Open+Sans%7COpen+Sans:700%7CRoboto:700%7CRoboto+Condensed:700" /> | ||
<link rel="stylesheet" data-th-href="${stylesUrl}" /> | ||
<link rel="alternate" data-th-if="${alternateLanguageVersionUrl}" data-th-href="${alternateLanguageVersionUrl}" | ||
data-th-hreflang="${language.alternate}" /> | ||
</head> | ||
|
||
<body class="xp-page" data-th-classappend="${bodyClasses}"> | ||
<div class="container"> | ||
<div data-th-utext="${contentHtml}" data-th-remove="tag"></div> | ||
</div> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.