-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Implement Kibana Login Selector #53010
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 4 commits
f442437
d89ab88
5253fc7
d6d4c2d
a572c52
706748a
5b189c2
db2f4b3
aae6867
1204619
181c6db
37c6489
f6b1d4f
c197b9c
aed4521
ceba57b
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 |
|---|---|---|
|
|
@@ -40,5 +40,5 @@ export function parseNext(href: string, basePath = '') { | |
| return `${basePath}/`; | ||
| } | ||
|
|
||
| return query.next + (hash || ''); | ||
| return next + (hash || ''); | ||
|
Member
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. note: I fixed this and added tests since it looks like a bug to me? |
||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,3 +27,7 @@ | |
| max-width: 700px; | ||
| } | ||
| } | ||
|
|
||
| .loginWelcome__selectorButton { | ||
| margin-bottom: $euiSize; | ||
|
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: are we using this
orderproperty anywhere? I couldn't find any references to it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it seems we don't need it - I refactored loginState a bit in the latest commit to return only what we need and use on the client side.