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

[OUI Docs] Deprecated kibana references #343

Merged
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
18 changes: 9 additions & 9 deletions src-docs/src/views/expression/columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export default () => {
isOpen: false,
value: (
<Fragment>
<p>.kibana_task_manager,</p>
<p>kibana_sample_data_ecommerce</p>
<p>.opensearch_dashboards_task_manager,</p>
<p>opensearch_dashboards_sample_data_ecommerce</p>
</Fragment>
),
});
Expand All @@ -39,19 +39,19 @@ export default () => {

const options = [
{
label: '.kibana_task_manager',
label: '.opensearch_dashboards_task_manager',
},
{
label: 'kibana_sample_data_ecommerce',
label: 'opensearch_dashboards_sample_data_ecommerce',
},
{
label: '.kibana-event-log-8.0.0-000001',
label: '.opensearch_dashboards-event-log-8.0.0-000001',
},
{
label: 'kibana_sample_data_flights',
label: 'opensearch_dashboards_sample_data_flights',
},
{
label: '.kibana-event-log-8.0.0',
label: '.opensearch_dashboards-event-log-8.0.0',
},
];

Expand Down Expand Up @@ -193,7 +193,7 @@ export default () => {
<OuiExpression
display="columns"
description="Except"
value="kibana_sample_data_ky_counties"
value="opensearch_dashboards_sample_data_ky_counties"
/>
<OuiSpacer />
<OuiTitle size="xxs">
Expand All @@ -203,7 +203,7 @@ export default () => {
description="join"
display="columns"
descriptionWidth={50}
value="kibana_sample_data_ky_avl"
value="opensearch_dashboards_sample_data_ky_avl"
onClick={() => {}}
/>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src-docs/src/views/expression/stringing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default () => (
<OuiExpression description="Select" value="count(*)" onClick={() => {}} />
<OuiExpression
description="From"
value="kibana_sample_data_ky_counties left"
value="opensearch_dashboards_sample_data_ky_counties left"
/>
<OuiExpression
description="join"
value="kibana_sample_data_ky_avl right"
value="opensearch_dashboards_sample_data_ky_avl right"
onClick={() => {}}
/>
<OuiExpression description="on" value="left.smis = right.kytccountynmbr" />
Expand Down
6 changes: 4 additions & 2 deletions src-docs/src/views/expression/truncate.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ const value = 'and a very long string as value';
const description = 'some very very long description';
const nodes = (
<Fragment>
<p className="oui-textTruncate">.kibana_task_manager</p>
<p className="oui-textTruncate">kibana_sample_data_ecommerce</p>
<p className="oui-textTruncate">.opensearch_dashboards_task_manager</p>
<p className="oui-textTruncate">
opensearch_dashboards_sample_data_ecommerce
</p>
</Fragment>
);

Expand Down