🐛[BUG] EditableProTable中,onValueChange钩子函数的record字段只能获取最外层数据的id,嵌套多层数据时,编辑内层数据,无法获取在onValueChange中获取当前行的id #7754
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Open Check | |
on: | |
issues: | |
types: [opened, edited] | |
jobs: | |
check-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-cool/issues-helper@v2.2.0 | |
id: check | |
with: | |
actions: 'check-issue' | |
issue-number: ${{ github.event.issue.number }} | |
title-excludes: '🐛[BUG], 👑 [需求], 🧐[问题]' | |
- if: steps.check.outputs.check-result == 'false' | |
uses: actions-cool/issues-helper@v2.2.0 | |
with: | |
actions: 'create-comment, close-issue' | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
当前 Issue 未检测到标题,请规范填写,谢谢! | |
The title of the current issue is not detected, please fill in according to the specifications, thank you! | |
- if: steps.check.outputs.check-result == 'true' | |
uses: actions-cool/issues-similarity-analysis@v1.1.0 | |
with: | |
filter-threshold: 0.6 | |
title-excludes: '🐛[BUG], 👑 [需求], 🧐[问题]' | |
comment-title: '### 以下的 Issues 可能会帮助到你 / The following issues may help you' | |
show-footer: false |