-
-
Notifications
You must be signed in to change notification settings - Fork 755
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Bug-Refactor-Type-determination-logic-in-tur…
…n-into-dropdown-componet
- Loading branch information
Showing
374 changed files
with
5,183 additions
and
4,588 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: "Bug Report" | ||
description: Create a new ticket for a bug. | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "Description" | ||
description: Please enter an explicit description of your issue | ||
placeholder: Short and explicit description of your incident... | ||
validations: | ||
required: true | ||
- type: input | ||
id: reprod-url | ||
attributes: | ||
label: "Reproduction URL" | ||
description: Please enter your GitHub or Sandbox URL to provide a reproduction of the issue | ||
placeholder: ex. https://github.com/USERNAME/REPO-NAME | ||
- type: textarea | ||
id: reprod | ||
attributes: | ||
label: "Reproduction steps" | ||
description: Please enter an explicit description of your issue | ||
value: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
render: bash | ||
validations: | ||
required: true | ||
- type: input | ||
id: plate | ||
attributes: | ||
label: "Plate version" | ||
description: Please give the version of plate | ||
placeholder: ex. 33.0.0 | ||
validations: | ||
required: true | ||
- type: input | ||
id: slate-react | ||
attributes: | ||
label: "Slate React version" | ||
description: Please give the version of slate-react | ||
placeholder: ex. 0.103.0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshot | ||
attributes: | ||
label: "Screenshots" | ||
description: If applicable, add screenshots to help explain your problem. | ||
render: bash | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: "Logs" | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: bash | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: "Browsers" | ||
description: What browsers are you seeing the problem on ? | ||
multiple: true | ||
options: | ||
- Chrome | ||
- Firefox | ||
- Safari | ||
validations: | ||
required: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,2 @@ | ||
**Description** | ||
|
||
See changesets. | ||
|
||
<!-- A clear and concise description of what this pull request solves. --> | ||
<!-- If your change is non-trivial, please include a description of how the | ||
new logic works, and why you decided to solve it the way you did. --> | ||
|
||
|
||
<!-- **Example** --> | ||
|
||
|
||
|
||
<!-- (optional) A sandbox, GIF or video showing the old and new behaviors after this | ||
pullrequest is merged. Or a code sample showing the usage of a new API. --> | ||
|
||
- [ ] added [changesets](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md) <!-- Required if `packages/` has been changed --> | ||
- [ ] updated [components changelog](https://github.com/udecode/plate/blob/main/apps/www/content/docs/components/changelog.mdx) <!-- Required if `apps/www/src/registry` has been changed --> |
Oops, something went wrong.