소스 검색

Fix/enable marketplace bug (#15895)

tags/1.1.0
Benjamin 7 달 전
부모
커밋
3a69a6a452
No account linked to committer's email address
3개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    0
      .gitignore
  2. 1
    1
      web/app/components/plugins/plugin-page/empty/index.tsx
  3. 1
    1
      web/app/components/plugins/plugin-page/install-plugin-dropdown.tsx

+ 3
- 0
.gitignore 파일 보기

@@ -202,3 +202,6 @@ api/.vscode

# plugin migrate
plugins.jsonl

# mise
mise.toml

+ 1
- 1
web/app/components/plugins/plugin-page/empty/index.tsx 파일 보기

@@ -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' }]
: []
),

+ 1
- 1
web/app/components/plugins/plugin-page/install-plugin-dropdown.tsx 파일 보기

@@ -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…
취소
저장