🌊 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:
Joe Reuter 2025-04-10 15:24:27 +02:00 committed by GitHub
parent de059eb516
commit 3a5489bab3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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`