DEV: correctly position below-direct-chat-channels (#28283)

It should be below channels, not above.
This commit is contained in:
Joffrey JAFFEUX
2024-08-08 22:55:35 +02:00
committed by GitHub
parent f87c2e7aa7
commit 7d316922e7

View File

@@ -57,11 +57,6 @@ export default class ChannelsListDirect extends Component {
}
<template>
<PluginOutlet
@name="below-direct-chat-channels"
@tagName=""
@outletArgs={{hash inSidebar=this.inSidebar}}
/>
{{#if
(and
this.showDirectMessageChannels
@@ -127,5 +122,11 @@ export default class ChannelsListDirect extends Component {
{{/each}}
{{/if}}
</div>
<PluginOutlet
@name="below-direct-chat-channels"
@tagName=""
@outletArgs={{hash inSidebar=this.inSidebar}}
/>
</template>
}