Skip to content
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

[7.x] App Search Polish (#96345) #96645

Merged
merged 1 commit into from
Apr 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const EnginesOverviewHeader: React.FC = () => {
rightSideItems={[
// eslint-disable-next-line @elastic/eui/href-or-on-click
<EuiButton
fill
size="s"
iconType="popout"
href={getAppSearchUrl()}
target="_blank"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ export const EnginesOverview: React.FC = () => {
<EuiPageContentHeaderSection>
{canManageEngines && (
<EuiButtonTo
color="primary"
fill
color="secondary"
size="s"
iconType="plusInCircle"
data-test-subj="appSearchEnginesEngineCreationButton"
to={ENGINE_CREATION_PATH}
>
Expand All @@ -108,6 +109,7 @@ export const EnginesOverview: React.FC = () => {
</EuiPageContentHeaderSection>
</EuiPageContentHeader>
<EuiPageContentBody data-test-subj="appSearchEngines">
<EuiSpacer />
<EnginesTable
items={engines}
loading={enginesLoading}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export const RelevanceTuningForm: React.FC = () => {
return (
<section className="relevanceTuningForm">
<form>
<EuiSpacer size="s" />
<EuiTitle size="m">
<h2>
{i18n.translate(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const RelevanceTuningPreview: React.FC = () => {
const { engineName, isMetaEngine } = useValues(EngineLogic);

return (
<EuiPanel hasBorder>
<EuiPanel color="subdued">
<EuiTitle size="m">
<h2>
{i18n.translate('xpack.enterpriseSearch.appSearch.engine.relevanceTuning.preview.title', {
Expand Down