mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
🌊 Streams: Do not order component templates (#217820)
By feedback from @LucaWintergerst we shouldn't sort the component templates in the "advanced" tab since their order matters when applied. This PR removes the sorting that's set on the table.
This commit is contained in:
parent
de059eb516
commit
3a5489bab3
1 changed files with 0 additions and 8 deletions
|
@ -95,13 +95,6 @@ export function ComponentTemplatePanel({
|
|||
[onFlyoutOpen]
|
||||
);
|
||||
|
||||
const sorting = {
|
||||
sort: {
|
||||
field: 'name',
|
||||
direction: 'asc' as const,
|
||||
},
|
||||
};
|
||||
|
||||
return (
|
||||
<EuiPanel hasShadow={false} hasBorder>
|
||||
<EuiFlexGroup direction="column" gutterSize="m">
|
||||
|
@ -114,7 +107,6 @@ export function ComponentTemplatePanel({
|
|||
<EuiInMemoryTable
|
||||
items={componentTemplates}
|
||||
columns={columns}
|
||||
sorting={sorting}
|
||||
tableLayout={'auto'}
|
||||
// align text with heading
|
||||
className={css`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue