Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: "20.0"
node-version: "20.x"

- run: yarn install
- run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion docs/api/internal/intercept-method.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ api.intercept(
- `event` - (required) an event to be fired
- `callback` - (required) a callback to be performed (the callback arguments will depend on the event to be fired)
- `config` - (optional) an object that stores the following parameter:
- `tag` - (optional) an action tag. You can use the tag name to remove an action handler via the [`detach`](api/internal/js_kanban_detach_method.md) method
- `tag` - (optional) an action tag. You can use the tag name to remove an action handler via the [`detach`](api/internal/detach-method.md) method

### Events

Expand Down
2 changes: 1 addition & 1 deletion docs/api/internal/on-method.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ api.on(
- `handler` - (required) a handler to be attached (the handler arguments will depend on the event to be fired)
- `config` - (optional) an object that stores the following parameters:
- `intercept` - (optional) if you set `intercept: true` during event listener creation, this event listener will run before all others
- `tag` - (optional) an action tag. You can use the tag name to remove an action handler via the [`detach`](api/internal/js_kanban_detach_method.md) method
- `tag` - (optional) an action tag. You can use the tag name to remove an action handler via the [`detach`](api/internal/detach-method.md) method

### Events

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "^3.9.1",
"@docusaurus/preset-classic": "^3.9.1",
"@docusaurus/core": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.44.5",
"@mdx-js/react": "^3.0.0",
"@svgr/webpack": "^5.5.0",
Expand Down
Loading
Loading