mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-18 15:25:20 +00:00
refac: hide channel add button for users
This commit is contained in:
parent
09b6ea38c5
commit
421aba7cd7
1 changed files with 8 additions and 8 deletions
|
|
@ -914,15 +914,15 @@
|
||||||
name={$i18n.t('Channels')}
|
name={$i18n.t('Channels')}
|
||||||
chevron={false}
|
chevron={false}
|
||||||
dragAndDrop={false}
|
dragAndDrop={false}
|
||||||
onAdd={async () => {
|
onAdd={$user?.role === 'admin'
|
||||||
if ($user?.role === 'admin') {
|
? async () => {
|
||||||
await tick();
|
await tick();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
showCreateChannel = true;
|
showCreateChannel = true;
|
||||||
}, 0);
|
}, 0);
|
||||||
}
|
}
|
||||||
}}
|
: null}
|
||||||
onAddLabel={$i18n.t('Create Channel')}
|
onAddLabel={$i18n.t('Create Channel')}
|
||||||
>
|
>
|
||||||
{#each $channels as channel}
|
{#each $channels as channel}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue