-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/add-ee-licensed-replay-transformer
- Loading branch information
Showing
30 changed files
with
232 additions
and
165 deletions.
There are no files selected for viewing
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
Binary file modified
BIN
-8.21 KB
(78%)
frontend/__snapshots__/exporter-exporter--funnel-time-to-convert-insight.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+124 Bytes
(100%)
frontend/__snapshots__/posthog-3000-navigation--navigation-base.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-239 Bytes
(100%)
frontend/__snapshots__/scenes-app-surveys--new-survey-targeting-section.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,38 +1,39 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta name="robots" content="noindex"> | ||
<script> | ||
window.POSTHOG_EXPORTED_DATA = {{exported_data|safe}} | ||
if (window.POSTHOG_EXPORTED_DATA.type) { | ||
var root = document.documentElement | ||
root.className += ' export-type-' + window.POSTHOG_EXPORTED_DATA.type | ||
} | ||
</script> | ||
{% include "head.html" %} | ||
{% if add_og_tags %} | ||
<meta property="og:title" content="{{ asset_title }}"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:description" content="{{ asset_description }}"> | ||
<meta property="og:url" content="{{ request.build_absolute_uri }}"> | ||
<meta property="og:image" content="{{ asset_opengraph_image_url }}"> | ||
<meta property="og:image:alt" content="A screenshot of the PostHog asset"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
{% endif %} | ||
</head> | ||
<body> | ||
<script> | ||
if (typeof Object.entries === 'undefined') { | ||
var div = document.createElement("div"); | ||
div.style.color='#fef6f6'; div.style.background='#920c0c'; div.style.padding='5px 10px'; | ||
div.innerHTML = "You are using a really old browser. Please upgrade to fully enjoy PostHog!" | ||
document.body.prepend(div); | ||
} | ||
if (!window.process) { | ||
// see https://github.com/remarkjs/react-markdown/issues/339 | ||
window.process = { cwd: () => '' }; | ||
} | ||
</script> | ||
<div id="root"></div> | ||
</body> | ||
<head> | ||
<meta name="robots" content="noindex" /> | ||
<script> | ||
window.POSTHOG_EXPORTED_DATA = {{exported_data|safe}} | ||
if (window.POSTHOG_EXPORTED_DATA.type) { | ||
var root = document.documentElement | ||
root.className += ' export-type-' + window.POSTHOG_EXPORTED_DATA.type | ||
} | ||
</script> | ||
{% include "head.html" %} {% if add_og_tags %} | ||
<meta property="og:title" content="{{ asset_title }}" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:description" content="{{ asset_description }}" /> | ||
<meta property="og:url" content="{{ request.build_absolute_uri }}" /> | ||
<meta property="og:image" content="{{ asset_opengraph_image_url }}" /> | ||
<meta property="og:image:alt" content="A screenshot of the PostHog asset" /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
{% endif %} | ||
</head> | ||
<body class="ExporterBody"> | ||
<script> | ||
if (typeof Object.entries === 'undefined') { | ||
var div = document.createElement('div') | ||
div.style.color = '#fef6f6' | ||
div.style.background = '#920c0c' | ||
div.style.padding = '5px 10px' | ||
div.innerHTML = 'You are using a really old browser. Please upgrade to fully enjoy PostHog!' | ||
document.body.prepend(div) | ||
} | ||
if (!window.process) { | ||
// see https://github.com/remarkjs/react-markdown/issues/339 | ||
window.process = { cwd: () => '' } | ||
} | ||
</script> | ||
<div id="root"></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
Oops, something went wrong.