Skip to content

Commit 8a7c750

Browse files
committed
fix: ci
1 parent ed5a4e7 commit 8a7c750

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: 22
2828
- name: Install Pnpm
29-
run: npm i pnpm@latest -g
29+
run: npm i pnpm@^10 -g
3030
- name: Install Node Dependencies
3131
run: pnpm install
3232
- name: Run Lint

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Install Pnpm
4343
if: |
4444
github.event.head_commit.message == 'chore: update versions'
45-
run: npm i pnpm@latest -g
45+
run: npm i pnpm@^10 -g
4646
- name: Install Node Dependencies
4747
if: |
4848
github.event.head_commit.message == 'chore: update versions'

backend/modelscope_studio/components/antd/cascader/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ class AntdCascader(ModelScopeDataLayoutComponent):
3939
SLOTS = [
4040
'allowClear.clearIcon', 'suffixIcon', 'maxTagPlaceholder',
4141
'notFoundContent', 'expandIcon', 'removeIcon', 'showSearch.searchIcon',
42-
'prefix', 'displayRender', 'tagRender', 'dropdownRender', 'popupRender'
43-
'showSearch.render', 'optionRender'
42+
'prefix', 'displayRender', 'tagRender', 'dropdownRender',
43+
'popupRender', 'showSearch.render', 'optionRender'
4444
]
4545

4646
def __init__(

0 commit comments

Comments
 (0)