Upload组件,file-list中的文件名name为纯数字时,无法通过文件url字段进行跳转预览操作,点击无反应 #2209
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: Add Feature Request Labels | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add-labels: | |
runs-on: ubuntu-latest | |
if: contains(github.event.issue.body, '__FEATURE_REQUEST__') == true | |
steps: | |
- name: Add labels | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'add-labels' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
labels: 'feature request' |