Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dist-ssr
/extra/healthcheck.exe
/extra/healthcheck
/extra/healthcheck-armv7
/studies

extra/exe-builder/bin
extra/exe-builder/obj
Expand Down
4 changes: 2 additions & 2 deletions server/model/status_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ class StatusPage extends BeanModel {

const head = $("head");

if (statusPage.googleAnalyticsTagId) {
let escapedGoogleAnalyticsScript = googleAnalytics.getGoogleAnalyticsScript(statusPage.googleAnalyticsTagId);
if (statusPage.google_analytics_tag_id) {
let escapedGoogleAnalyticsScript = googleAnalytics.getGoogleAnalyticsScript(statusPage.google_analytics_tag_id);
head.append($(escapedGoogleAnalyticsScript));
}

Expand Down
Loading
Loading