-
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
add per space configuration to custom header banner #94449
Merged
pgayvallet
merged 30 commits into
elastic:master
from
pgayvallet:kbn-17298-banner-phase-2
Mar 31, 2021
Merged
Changes from 22 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
7faf18e
restore the banners ui settings
pgayvallet 14739df
fix banner init logic
pgayvallet 50b4dc1
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet eedff07
fix unit tests
pgayvallet 4afec76
update telemetry schema
pgayvallet 28b08a5
add basic server-side plugin tests
pgayvallet 559509f
add FTR tests for banners plugin
pgayvallet 42ad72e
use keyword for sensitive setting
pgayvallet 574f8e4
update snapshots
pgayvallet 0c5172f
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 9313585
setting name consistency with configuration properties
pgayvallet fda3ffc
fix setting names in telemetry files
pgayvallet 26f8272
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 847e0f2
open banner links in new tab
pgayvallet a7b6abf
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 085d401
add config.disableSpaceBanners property
pgayvallet 506a9e3
fix types
pgayvallet 2745d03
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 707ea3b
add descriptions to banner settings
pgayvallet 4b6a76e
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 0570ea1
change label and value header->top
pgayvallet 2ac2bea
finishing header->top replacement
pgayvallet 2ce561a
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet f43168b
doc nits
pgayvallet 14c33b6
add banners section to advanced options doc
pgayvallet 3f90c42
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 0c8b881
feedback on advanced options doc
pgayvallet ceea04a
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet 07206ea
Merge remote-tracking branch 'upstream/master' into kbn-17298-banner-…
pgayvallet f39965b
adapt deprecation to new format
pgayvallet 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
12 changes: 12 additions & 0 deletions
12
...dvanced_settings/public/management_app/components/field/__snapshots__/field.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -326,6 +326,7 @@ export class Field extends PureComponent<FieldProps> { | |
<div data-test-subj={`advancedSetting-editField-${name}`}> | ||
<EuiCodeEditor | ||
{...a11yProps} | ||
name={`advancedSetting-editField-${name}-editor`} | ||
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. This was required for the addition of |
||
mode={type} | ||
theme="textmate" | ||
value={currentValue} | ||
|
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
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
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
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
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.
You'll also need to add documentation about the Banner settings to the Advanced Settings page.
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.
Thanks. WDYT about 14c33b6?