mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 16:05:55 +08:00
Fix/enable marketplace bug (#15895)
This commit is contained in:
parent
f8f21ef7c0
commit
3a69a6a452
3
.gitignore
vendored
3
.gitignore
vendored
@ -202,3 +202,6 @@ api/.vscode
|
|||||||
|
|
||||||
# plugin migrate
|
# plugin migrate
|
||||||
plugins.jsonl
|
plugins.jsonl
|
||||||
|
|
||||||
|
# mise
|
||||||
|
mise.toml
|
||||||
|
@ -71,7 +71,7 @@ const Empty = () => {
|
|||||||
<div className='w-full flex flex-col gap-y-1'>
|
<div className='w-full flex flex-col gap-y-1'>
|
||||||
{[
|
{[
|
||||||
...(
|
...(
|
||||||
(enable_marketplace || true)
|
(enable_marketplace && true)
|
||||||
? [{ icon: MagicBox, text: t('plugin.list.source.marketplace'), action: 'marketplace' }]
|
? [{ icon: MagicBox, text: t('plugin.list.source.marketplace'), action: 'marketplace' }]
|
||||||
: []
|
: []
|
||||||
),
|
),
|
||||||
|
@ -85,7 +85,7 @@ const InstallPluginDropdown = ({
|
|||||||
<div className='w-full'>
|
<div className='w-full'>
|
||||||
{[
|
{[
|
||||||
...(
|
...(
|
||||||
(enable_marketplace || true)
|
(enable_marketplace && true)
|
||||||
? [{ icon: MagicBox, text: t('plugin.source.marketplace'), action: 'marketplace' }]
|
? [{ icon: MagicBox, text: t('plugin.source.marketplace'), action: 'marketplace' }]
|
||||||
: []
|
: []
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user