diff --git a/src/locales/en.ts b/src/locales/en.ts index fcdfdbe54..8f27850e8 100644 --- a/src/locales/en.ts +++ b/src/locales/en.ts @@ -605,11 +605,12 @@ const en = { }, savedFilters: { title: 'Saved Filters', - noSavedFilters: 'You have no saved filters', + noSavedFilters: + 'A saved filter is a virtual query created by applying one or more filters to a data set. Save your first filter from the query builder at the top of the Data Exploration and Variants Exploration pages.', lastSaved: 'Last saved: {date} ago', infoPopover: { content: - 'A saved filter is a virtual query created by applying one or more filters to a data set. They can be saved and revisited for later use. You can create and manage saved filters from the query builder at the top of the Data Exploration and Variants pages.', + 'A saved filter is a virtual query created by applying one or more filters to a data set. They can be saved and revisited for later use. You can create and manage saved filters from the query builder at the top of the Data Exploration and Variants Exploration pages.', title: 'Managing Saved Filters', }, @@ -627,11 +628,12 @@ const en = { variants: 'Variants', }, title: 'Saved Sets', - noSavedFilters: 'You have no saved sets', + noSavedSets: + 'A saved set is a collection of one or more entity IDs which can be saved and revisited for later use. Save your first set at the top of the table of results in the Data Exploration and Variants Exploration pages.', lastSaved: 'Last saved: {date} ago', infoPopover: { content: - 'A saved set is a collection of one or more entity IDs which can be saved and revisited for later use. You can create saved sets at the top of the table of results in the Data Exploration and Variants pages.', + 'A saved set is a collection of one or more entity IDs which can be saved and revisited for later use. You can create saved sets at the top of the table of results in the Data Exploration and Variants Exploration pages.', title: 'Managing Saved Sets', }, }, diff --git a/src/views/Dashboard/components/DashboardCards/SavedFilters/index.module.scss b/src/views/Dashboard/components/DashboardCards/SavedFilters/index.module.scss index 688f55993..2eab4df4a 100644 --- a/src/views/Dashboard/components/DashboardCards/SavedFilters/index.module.scss +++ b/src/views/Dashboard/components/DashboardCards/SavedFilters/index.module.scss @@ -10,6 +10,10 @@ *[class$='-item-meta-description'] { font-size: 12px; } + + div[class$='-list-empty-text'] { + padding: 24px; + } } .setTabs { @@ -18,6 +22,10 @@ :global(.ant-tabs-content) { height: 100%; overflow: auto; + + :global(.ant-tabs-tabpane) { + height: 100%; + } } :global(.ant-tabs-tab) { diff --git a/src/views/Dashboard/components/DashboardCards/SavedFilters/index.tsx b/src/views/Dashboard/components/DashboardCards/SavedFilters/index.tsx index e43c539c9..ab6d6d9a8 100644 --- a/src/views/Dashboard/components/DashboardCards/SavedFilters/index.tsx +++ b/src/views/Dashboard/components/DashboardCards/SavedFilters/index.tsx @@ -56,7 +56,11 @@ const SavedFilterListWrapper = ({ ) : ( ), }} diff --git a/src/views/Dashboard/components/DashboardCards/SavedSets/index.module.scss b/src/views/Dashboard/components/DashboardCards/SavedSets/index.module.scss index 39cf12fbb..782ec0b13 100644 --- a/src/views/Dashboard/components/DashboardCards/SavedSets/index.module.scss +++ b/src/views/Dashboard/components/DashboardCards/SavedSets/index.module.scss @@ -12,6 +12,10 @@ *[class$='-item-meta-description'] { font-size: 12px; } + + div[class$='-list-empty-text'] { + padding: 24px; + } } .setTabs { @@ -20,6 +24,10 @@ :global(.ant-tabs-content) { height: 100%; overflow: auto; + + :global(.ant-tabs-tabpane) { + height: 100%; + } } :global(.ant-tabs-tab) { diff --git a/src/views/Dashboard/components/DashboardCards/SavedSets/index.tsx b/src/views/Dashboard/components/DashboardCards/SavedSets/index.tsx index 6cfae0e29..bb90c82af 100644 --- a/src/views/Dashboard/components/DashboardCards/SavedSets/index.tsx +++ b/src/views/Dashboard/components/DashboardCards/SavedSets/index.tsx @@ -53,7 +53,11 @@ const getItemList = ( ) : ( ), }}