Skip to content

Commit

Permalink
Feature/send feedback link (#64845) (#64899)
Browse files Browse the repository at this point in the history
* use fixed table layout

* add alpha messaging flyout

* Added alpha badge + data streams link

* Update x-pack/plugins/ingest_manager/public/applications/ingest_manager/components/alpha_flyout.tsx

Co-Authored-By: Jen Huang <[email protected]>

* Update x-pack/plugins/ingest_manager/public/applications/ingest_manager/components/alpha_flyout.tsx

Co-Authored-By: Jen Huang <[email protected]>

* Update x-pack/plugins/ingest_manager/public/applications/ingest_manager/components/alpha_flyout.tsx

Co-Authored-By: Jen Huang <[email protected]>

* Update x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/overview/index.tsx

Co-Authored-By: Jen Huang <[email protected]>

* remove small tags

* change messaging from alpha to experimental

* add period

* remove unused imports

* fixed i18n ids

* add send feedback link to header

* rename "ingest management" to "ingest manager"

Co-authored-by: Jen Huang <[email protected]>
Co-authored-by: Elastic Machine <[email protected]>

Co-authored-by: Jen Huang <[email protected]>
Co-authored-by: Elastic Machine <[email protected]>
  • Loading branch information
3 people authored May 5, 2020
1 parent 375c3bf commit 957cb0b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export const SettingFlyout: React.FunctionComponent<Props> = ({ onClose }) => {
<h2 id="IngestManagerSettingsFlyoutTitle">
<FormattedMessage
id="xpack.ingestManager.settings.flyoutTitle"
defaultMessage="Ingest Management settings"
defaultMessage="Ingest Manager settings"
/>
</h2>
</EuiTitle>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,28 @@ export const DefaultLayout: React.FunctionComponent<Props> = ({ section, childre
</EuiTabs>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiButtonEmpty iconType="gear" onClick={() => setIsSettingsFlyoutOpen(true)}>
<FormattedMessage
id="xpack.ingestManager.appNavigation.settingsButton"
defaultMessage="General settings"
/>
</EuiButtonEmpty>
<EuiFlexGroup gutterSize="s" direction="row">
<EuiFlexItem>
<EuiButtonEmpty
iconType="popout"
href="https://ela.st/ingest-manager-feedback"
target="_blank"
>
<FormattedMessage
id="xpack.ingestManager.appNavigation.sendFeedbackButton"
defaultMessage="Send Feedback"
/>
</EuiButtonEmpty>
</EuiFlexItem>
<EuiFlexItem>
<EuiButtonEmpty iconType="gear" onClick={() => setIsSettingsFlyoutOpen(true)}>
<FormattedMessage
id="xpack.ingestManager.appNavigation.settingsButton"
defaultMessage="Settings"
/>
</EuiButtonEmpty>
</EuiFlexItem>
</EuiFlexGroup>
</EuiFlexItem>
</EuiFlexGroup>
</Nav>
Expand Down

0 comments on commit 957cb0b

Please sign in to comment.