mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 12:55:19 +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')}
|
||||
chevron={false}
|
||||
dragAndDrop={false}
|
||||
onAdd={async () => {
|
||||
if ($user?.role === 'admin') {
|
||||
await tick();
|
||||
onAdd={$user?.role === 'admin'
|
||||
? async () => {
|
||||
await tick();
|
||||
|
||||
setTimeout(() => {
|
||||
showCreateChannel = true;
|
||||
}, 0);
|
||||
}
|
||||
}}
|
||||
setTimeout(() => {
|
||||
showCreateChannel = true;
|
||||
}, 0);
|
||||
}
|
||||
: null}
|
||||
onAddLabel={$i18n.t('Create Channel')}
|
||||
>
|
||||
{#each $channels as channel}
|
||||
|
|
|
|||
Loading…
Reference in a new issue