Skip to content

Commit

Permalink
Merge branch 'main' into guided-onboarding-search-update
Browse files Browse the repository at this point in the history
  • Loading branch information
afoucret authored Sep 25, 2023
2 parents 908c371 + 18555d5 commit 7456cca
Show file tree
Hide file tree
Showing 28 changed files with 231 additions and 1,132 deletions.
2 changes: 1 addition & 1 deletion docs/management/upgrade-assistant.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ The Upgrade assistant pulls information about deprecations from the following so
* Elasticsearch deprecation logs
* Kibana deprecations API

For more information about the API's the Upgraed assistant provides, refer to <<upgrade-assistant-api, Upgrade Assistant APIs>>.
For more information about Upgrade Assistant APIs, refer to <<upgrade-assistant-api, Upgrade Assistant APIs>>.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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
Expand Up @@ -68,7 +68,8 @@ export const KibanaPageTemplateInner: FC<Props> = ({
// the following props can be removed to allow the template to auto-handle
// the fixed header and banner heights.
offset={0}
minHeight={0}
minHeight={header ? 'calc(100vh - var(--euiFixedHeadersOffset, 0))' : 0}
grow={header ? false : undefined}
{...rest}
>
{sideBar}
Expand Down
4 changes: 2 additions & 2 deletions src/dev/build/tasks/fleet/download_elastic_gpg_key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import { ToolingLog } from '@kbn/tooling-log';
import { downloadToDisk } from '../../lib';

const ARTIFACTS_URL = 'https://artifacts.elastic.co/';
const GPG_KEY_NAME = 'GPG-KEY-elasticsearch';
const GPG_KEY_NAME = 'GPG-KEY-elasticsearch.sha1';
const GPG_KEY_SHA512 =
'62a567354286deb02baf5fc6b82ddf6c7067898723463da9ae65b132b8c6d6f064b2874e390885682376228eed166c1c82fe7f11f6c9a69f0c157029c548fa3d';
'84ee193cc337344d9a7da9021daf3f5ede83f5f1ab049d169f3634921529dcd096abf7a91eec7f26f3a6913e5e38f88f69a5e2ce79ad155d46edc75705a648c6';

export async function downloadElasticGpgKey(pkgDir: string, log: ToolingLog) {
const gpgKeyUrl = ARTIFACTS_URL + GPG_KEY_NAME;
Expand Down

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
Expand Up @@ -18,7 +18,7 @@ import * as StatusCheckStates from './status_check_states';
import { injectI18n, FormattedMessage } from '@kbn/i18n-react';
import { i18n } from '@kbn/i18n';
import { getServices } from '../../kibana_services';
import { KibanaPageTemplate } from '@kbn/kibana-react-plugin/public';
import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template';

const INSTRUCTIONS_TYPE = {
ELASTIC_CLOUD: 'elasticCloud',
Expand Down Expand Up @@ -360,7 +360,7 @@ class TutorialUi extends React.Component {
render() {
let content;
if (this.state.notFound) {
content = (
return (
<KibanaPageTemplate
isEmptyState={true}
pageHeader={{
Expand Down Expand Up @@ -435,7 +435,11 @@ class TutorialUi extends React.Component {
);
}

return <KibanaPageTemplate template="empty">{content}</KibanaPageTemplate>;
return (
<KibanaPageTemplate template="empty">
<KibanaPageTemplate.Section>{content}</KibanaPageTemplate.Section>
</KibanaPageTemplate>
);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { SampleDataTab } from '@kbn/home-sample-data-tab';
import { i18n } from '@kbn/i18n';
import { Synopsis } from './synopsis';
import { getServices } from '../kibana_services';
import { KibanaPageTemplate } from '@kbn/kibana-react-plugin/public';
import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template';
import { getTutorials } from '../load_tutorials';

const SAMPLE_DATA_TAB_ID = 'sampleData';
Expand Down Expand Up @@ -257,7 +257,7 @@ class TutorialDirectoryUi extends React.Component {
rightSideItems: headerLinks ? [headerLinks] : [],
}}
>
{this.renderTabContent()}
<KibanaPageTemplate.Section>{this.renderTabContent()}</KibanaPageTemplate.Section>
</KibanaPageTemplate>
);
}
Expand Down
Loading

0 comments on commit 7456cca

Please sign in to comment.