Merge remote-tracking branch 'origin/next' into v2.3
commit
b6ef2b192c
|
@ -0,0 +1,26 @@
|
|||
name: Issue Open Check
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
jobs:
|
||||
check-issue:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions-cool/check-user-permission@v1.0.0
|
||||
id: checkUser
|
||||
with:
|
||||
require: 'write'
|
||||
|
||||
- name: check invalid
|
||||
if: (contains(github.event.issue.body, 'issue-helper') == false) && (steps.checkUser.outputs.result == 'false')
|
||||
uses: actions-cool/issues-helper@v1.2
|
||||
with:
|
||||
actions: 'create-comment,add-labels,close-issue'
|
||||
issue-number: ${{ github.event.issue.number }}
|
||||
labels: 'Invalid'
|
||||
body: |
|
||||
Hello @${{ github.event.issue.user.login }}, your issue has been closed because it does not conform to our issue requirements. Please use the [Issue Helper](https://vuecomponent.github.io/issue-helper/) to create an issue, thank you!
|
||||
|
||||
你好 @${{ github.event.issue.user.login }},为了能够进行高效沟通,我们对 issue 有一定的格式要求,你的 issue 因为不符合要求而被自动关闭。你可以通过 [issue 助手](https://vuecomponent.github.io/issue-helper/) 来创建 issue 以方便我们定位错误。谢谢配合!
|
|
@ -54,7 +54,7 @@ export default {
|
|||
component: BodyCell,
|
||||
} = this;
|
||||
const fixedInfoList = this.store.fixedInfoList || [];
|
||||
const fixedInfo = fixedInfoList[this.colIndex];
|
||||
const fixedInfo = fixedInfoList[this.colIndex] || {};
|
||||
const { fixLeft, fixRight, firstFixLeft, lastFixLeft, firstFixRight, lastFixRight } = fixedInfo;
|
||||
// ====================== Fixed =======================
|
||||
const fixedStyle = {};
|
||||
|
|
Loading…
Reference in New Issue