From e17c463890ea7d981dbf14c5437d73325ff4c329 Mon Sep 17 00:00:00 2001 From: sean-brydon <55134778+sean-brydon@users.noreply.github.com> Date: Wed, 31 Aug 2022 12:13:27 +0100 Subject: [PATCH] V2 General Fixes (#4038) --- apps/web/components/v2/eventtype/EventAppsTab.tsx | 6 +++++- .../v2/eventtype/EventTypeSingleLayout.tsx | 7 ++++--- apps/web/pages/v2/bookings/[status].tsx | 4 ++-- apps/web/pages/v2/event-types/index.tsx | 6 +++--- apps/web/public/static/locales/en/common.json | 4 +++- packages/ui/v2/core/Button.tsx | 13 +++++++++---- packages/ui/v2/core/EmptyScreen.tsx | 2 +- packages/ui/v2/core/Switch.tsx | 7 +++++-- packages/ui/v2/core/layouts/BookingLayout.tsx | 12 +++++++++--- .../ui/v2/core/navigation/tabs/VerticalTabItem.tsx | 11 ++++++++--- packages/ui/v2/modules/booker/DatePicker.tsx | 6 +++--- 11 files changed, 52 insertions(+), 26 deletions(-) diff --git a/apps/web/components/v2/eventtype/EventAppsTab.tsx b/apps/web/components/v2/eventtype/EventAppsTab.tsx index 7615ee379b..a2ddc83461 100644 --- a/apps/web/components/v2/eventtype/EventAppsTab.tsx +++ b/apps/web/components/v2/eventtype/EventAppsTab.tsx @@ -79,7 +79,11 @@ export const EventAppsTab = ({ Icon={Icon.FiGrid} headline={t("empty_installed_apps_headline")} description={t("empty_installed_apps_description")} - buttonRaw={} + buttonRaw={ + + } /> ); } diff --git a/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx b/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx index fdcea1de02..abb81cf93d 100644 --- a/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx +++ b/apps/web/components/v2/eventtype/EventTypeSingleLayout.tsx @@ -104,8 +104,8 @@ function EventTypeSingleLayout({ { name: "recurring", tabName: "recurring", - icon: Icon.FiRotateCcw, - info: `recurring_event_description`, + icon: Icon.FiRepeat, + info: `recurring_event_tab_description`, }, { name: "apps", @@ -191,7 +191,8 @@ function EventTypeSingleLayout({ showToast("Link copied!", "success"); }} /> - + {/* TODO: Implement embed here @hariom */} + {/* */} } {query.status === "success" && !isEmpty && ( -
Today