-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[Enterprise Search] Update WS Overview logic to use new config data #77122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
1f0a043
96f1208
aa672db
c57ca47
b5e728a
81b908c
0d5c08c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,6 +28,7 @@ import { ORG_SOURCES_PATH, USERS_PATH, ORG_SETTINGS_PATH } from '../../routes'; | |
|
|
||
| import { ContentSection } from '../../components/shared/content_section'; | ||
|
|
||
| import { AppLogic } from '../../app_logic'; | ||
| import { OverviewLogic } from './overview_logic'; | ||
|
|
||
| import { OnboardingCard } from './onboarding_card'; | ||
|
|
@@ -58,16 +59,18 @@ const ONBOARDING_USERS_CARD_DESCRIPTION = i18n.translate( | |
| ); | ||
|
|
||
| export const OnboardingSteps: React.FC = () => { | ||
| const { | ||
| isFederatedAuth, | ||
| organization: { name, defaultOrgName }, | ||
| account: { isCurated, canCreateInvitations }, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I know this is a tech update PR, so it's not a blocker in any way.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know for sure but I am taking a note to find out. Thanks! |
||
| } = useValues(AppLogic); | ||
|
|
||
| const { | ||
| hasUsers, | ||
| hasOrgSources, | ||
| canCreateContentSources, | ||
| canCreateInvitations, | ||
| accountsCount, | ||
| sourcesCount, | ||
| fpAccount: { isCurated }, | ||
| organization: { name, defaultOrgName }, | ||
| isFederatedAuth, | ||
| } = useValues(OverviewLogic); | ||
|
|
||
| const accountsPath = | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.