Drawer isDetail模式,且当前页面打开了页面缓存,切换了菜单,Drawer弹窗没有自动关闭,还会在切换后的菜单页面之上 #440
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 Labeled | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
reply-labeled: | |
runs-on: ubuntu-latest | |
steps: | |
- name: remove pending | |
if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'remove-labels' | |
token: ${{ secrets.OPER_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
labels: 'bug: pending triage' | |
- name: need reproduction | |
if: github.event.label.name == 'need reproduction' | |
uses: actions-cool/[email protected] | |
with: | |
actions: 'create-comment, remove-labels' | |
token: ${{ secrets.OPER_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}. Please provide the complete reproduction steps and code. Issues labeled by `need reproduction` will be closed if no activities in 3 days. | |
labels: 'bug: pending triage' |