bug_report.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. name: Bug Report
  2. description: File a reproducible bug or regression.
  3. body:
  4. - type: textarea
  5. id: description
  6. attributes:
  7. label: Description
  8. description: A clear and concise description of what the bug is.
  9. validations:
  10. required: true
  11. - type: textarea
  12. id: repro
  13. attributes:
  14. label: Reproduction steps
  15. description: How do you trigger this bug? Please walk us through it step by step.
  16. value: |
  17. 1.
  18. 2.
  19. 3.
  20. validations:
  21. required: true
  22. - type: textarea
  23. id: code
  24. attributes:
  25. label: Code
  26. value: |
  27. ```js
  28. // code goes here
  29. ```
  30. validations:
  31. required: true
  32. - type: textarea
  33. id: example
  34. attributes:
  35. label: Live example
  36. value: |
  37. * [jsfiddle-latest-release](https://jsfiddle.net/g3atw6k5/)
  38. * [jsfiddle-dev](https://jsfiddle.net/hjqw94c5/)
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: screenshots
  43. attributes:
  44. label: Screenshots
  45. description: If applicable, add screenshots to help explain your problem (drag and drop the image).
  46. validations:
  47. required: false
  48. - type: input
  49. id: version
  50. attributes:
  51. label: Version
  52. description: What version of the library are you using?
  53. placeholder: r
  54. validations:
  55. required: true
  56. - type: dropdown
  57. id: device
  58. attributes:
  59. label: Device
  60. multiple: true
  61. options:
  62. - Desktop
  63. - Mobile
  64. - Headset
  65. - type: dropdown
  66. id: browser
  67. attributes:
  68. label: Browser
  69. multiple: true
  70. options:
  71. - Chrome
  72. - Firefox
  73. - Safari
  74. - Edge
  75. - type: dropdown
  76. id: os
  77. attributes:
  78. label: OS
  79. multiple: true
  80. options:
  81. - Windows
  82. - MacOS
  83. - Linux
  84. - ChromeOS
  85. - Android
  86. - iOS
粤ICP备19079148号