diff --git a/frontend/public/locales/en-GB/organizationsettings.json b/frontend/public/locales/en-GB/organizationsettings.json index 7daaf5c781..deae9666ee 100644 --- a/frontend/public/locales/en-GB/organizationsettings.json +++ b/frontend/public/locales/en-GB/organizationsettings.json @@ -14,5 +14,6 @@ "delete_domain_message": "Are you sure you want to delete this domain?", "delete_domain": "Delete Domain", "add_domain": "Add Domains", - "saml_settings":"Your SAML settings have been saved, please login from incognito window to confirm that it has been set up correctly" + "saml_settings": "Your SAML settings have been saved, please login from incognito window to confirm that it has been set up correctly", + "invite_link_share_manually": "After inviting members, please copy the invite link and send them the link manually" } diff --git a/frontend/public/locales/en/organizationsettings.json b/frontend/public/locales/en/organizationsettings.json index 7daaf5c781..deae9666ee 100644 --- a/frontend/public/locales/en/organizationsettings.json +++ b/frontend/public/locales/en/organizationsettings.json @@ -14,5 +14,6 @@ "delete_domain_message": "Are you sure you want to delete this domain?", "delete_domain": "Delete Domain", "add_domain": "Add Domains", - "saml_settings":"Your SAML settings have been saved, please login from incognito window to confirm that it has been set up correctly" + "saml_settings": "Your SAML settings have been saved, please login from incognito window to confirm that it has been set up correctly", + "invite_link_share_manually": "After inviting members, please copy the invite link and send them the link manually" } diff --git a/frontend/src/container/LogsExplorerViews/index.tsx b/frontend/src/container/LogsExplorerViews/index.tsx index eeac5513b9..bcc67ddd6a 100644 --- a/frontend/src/container/LogsExplorerViews/index.tsx +++ b/frontend/src/container/LogsExplorerViews/index.tsx @@ -147,13 +147,13 @@ function LogsExplorerViews(): JSX.Element { [currentQuery, updateAllQueriesOperators], ); - const listChartData = useGetExplorerQueryRange( - listChartQuery, - PANEL_TYPES.TIME_SERIES, - { - enabled: !!listChartQuery && panelType === PANEL_TYPES.LIST, - }, - ); + const { + data: listChartData, + isFetching: isFetchingListChartData, + isLoading: isLoadingListChartData, + } = useGetExplorerQueryRange(listChartQuery, PANEL_TYPES.TIME_SERIES, { + enabled: !!listChartQuery && panelType === PANEL_TYPES.LIST, + }); const { data, isFetching, isError } = useGetExplorerQueryRange( requestData, @@ -445,12 +445,8 @@ function LogsExplorerViews(): JSX.Element { if (!stagedQuery) return []; if (panelType === PANEL_TYPES.LIST) { - if ( - listChartData && - listChartData.data && - listChartData.data.payload.data.result.length > 0 - ) { - return listChartData.data.payload.data.result; + if (listChartData && listChartData.payload.data.result.length > 0) { + return listChartData.payload.data.result; } return []; } @@ -472,7 +468,10 @@ function LogsExplorerViews(): JSX.Element { return ( <> - + {stagedQuery && ( {t('pending_invites')} - + + + + {t('invite_link_share_manually')} + + +