Fix/enable marketplace bug (#15895)

pull/15923/head
Benjamin 11 months ago committed by GitHub
parent f8f21ef7c0
commit 3a69a6a452
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

3
.gitignore vendored

@ -202,3 +202,6 @@ api/.vscode
# plugin migrate
plugins.jsonl
# mise
mise.toml

@ -71,7 +71,7 @@ const Empty = () => {
<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' }]
: []
),

@ -85,7 +85,7 @@ const InstallPluginDropdown = ({
<div className='w-full'>
{[
...(
(enable_marketplace || true)
(enable_marketplace && true)
? [{ icon: MagicBox, text: t('plugin.source.marketplace'), action: 'marketplace' }]
: []
),

Loading…
Cancel
Save