From 180a62266635f0b24c71e0895e761d4361e90198 Mon Sep 17 00:00:00 2001 From: ikuleshov Date: Thu, 3 Oct 2024 13:53:03 -0700 Subject: [PATCH] Add HaTS link to the main page (#2028) * Add screen_view, ad_impression, campaign_details events to EventBuilder * remove UA toggle * update the react-spinner version * remove unimplemented LineItem component * Force Typography to use span tag instead of div to avoid compilation warnings. Remove duplicate code and fix tests by renaming labels... * remove UA code and tests * fix tests * Dimensions and Metrics Explorer UX update Use the autocomplete component to search metrics/dimensions. The main list of all dimensions/metrics remains unchanged when selecting fields for compatibility check. The list of options available in Autocomplete components is updated based on fields' compatibility. Display field categories in accordion with Expand all / Collapse all options. Add option to display compatible only/incompatible only/all fields. Render field description using Markdown. * add HATS survey link to the main page under the "Help & Feedback" section --- src/components/Home/index.tsx | 7 +++++++ src/constants.ts | 2 ++ 2 files changed, 9 insertions(+) diff --git a/src/components/Home/index.tsx b/src/components/Home/index.tsx index 13dccd7e..7341a086 100644 --- a/src/components/Home/index.tsx +++ b/src/components/Home/index.tsx @@ -88,6 +88,13 @@ const IndexPage: React.FC = () => { For this site +
  • + Fill out a{" "} + + brief customer survey + {" "} + and let us know what you think! +
  • You may report bugs by{" "} diff --git a/src/constants.ts b/src/constants.ts index f93f31f3..17578213 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -52,6 +52,8 @@ export enum Url { enhancedEcommerceDemo = "https://enhancedecommerce.appspot.com/", gaDevToolsGitHub = "https://github.com/googleanalytics/ga-dev-tools", gaDevToolsGitHubNewIssue = "https://github.com/googleanalytics/ga-dev-tools/issues/new?assignees=&labels=&template=bug_report.md&title=", + + gaDevToolsHatsSurvey = "https://forms.gle/khM6TxwTpjRfkPk69", gaDevToolsGitHubNewFeatureRequest = "https://github.com/googleanalytics/ga-dev-tools/issues/new?assignees=&labels=&template=feature_request.md&title=", gaDevsite = "http://developers.google.com/analytics", gaDevsiteHelp = "http://developers.google.com/analytics/help/",