-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Stack monitoring] Remove angular #115063
Merged
estermv
merged 7 commits into
elastic:master
from
estermv:109791-stack-monitoring-remove-angular
Oct 18, 2021
Merged
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
988c44c
Remove angular
estermv e3844cf
Merge remote-tracking branch 'upstream/master' into 109791-stack-moni…
estermv 852d8f3
Fix translations
estermv 4ab1faa
convert insetupmode to boolean
estermv b33dee8
Merge remote-tracking branch 'upstream/master' into 109791-stack-moni…
estermv fe24e15
remove license service
estermv 6ff9f2f
Merge branch 'master' into 109791-stack-monitoring-remove-angular
kibanamachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
249 changes: 0 additions & 249 deletions
249
x-pack/plugins/monitoring/public/angular/app_modules.ts
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
x-pack/plugins/monitoring/public/angular/helpers/routes.ts
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Curious when this wouldn't be a boolean that required the
!!
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.
It's because of this line. In React, we default to the
isInSetupMode
that it's in the global state, that is marked as optional.Should it be optional? Probably no, but I guess because of the progressive migration it didn't exist until we migrated the setup mode related stuff, so when we put it in the global state we put it as optional to not break anything that already exists.
Since, in this case, when it's
undefined
, we should treat it asfalse
, I think is good enough to make the conversion here.