|
| 1 | +name: Bug Report |
| 2 | +description: Create a bug report |
| 3 | +labels: ["t/bug"] |
| 4 | +assignees: [] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for submitting the bug report! Please provide as much detail as possible to help us diagnose and resolve the issue faster. |
| 10 | + - type: textarea |
| 11 | + id: description |
| 12 | + attributes: |
| 13 | + label: Description |
| 14 | + description: Please provide a detailed description of the issue you're experiencing, including any relevant screenshots or videos. |
| 15 | + placeholder: Please describe what you're seeing! |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + - type: textarea |
| 19 | + id: repro-steps |
| 20 | + attributes: |
| 21 | + label: Steps to Reproduce |
| 22 | + description: Please describe the steps to reproduce the behavior you've observed, along with what you expected to happen and what actually occurred. |
| 23 | + placeholder: | |
| 24 | + 1. Add a `SfSegmentedControl` and add `ItemsSource`, and 'FlowDirection' to `RightToLeft` |
| 25 | + like so: `<segmentedControl:SfSegmentedControl FlowDirection="RightToLeft"> |
| 26 | + <segmentedControl:SfSegmentedControl.ItemsSource> |
| 27 | + <x:Array Type="{x:Type x:String}"> |
| 28 | + <x:String>Day</x:String> |
| 29 | + <x:String>Week</x:String> |
| 30 | + <x:String>Month</x:String> |
| 31 | + <x:String>Year</x:String> |
| 32 | + </x:Array> |
| 33 | + </segmentedControl:SfSegmentedControl.ItemsSource> |
| 34 | + </segmentedControl:SfSegmentedControl>` |
| 35 | + 2. If the `FlowDirection` is set to `RightToLeft` and observe the layout issue 🐞 |
| 36 | + |
| 37 | + Expected outcome: a bug was added |
| 38 | + Actual outcome: a ladybug appeared |
| 39 | + validations: |
| 40 | + required: false |
| 41 | + - type: dropdown |
| 42 | + id: version-with-bug |
| 43 | + attributes: |
| 44 | + label: Version with bug |
| 45 | + description: In which version are you encountering this issue? |
| 46 | + options: |
| 47 | + - 1.0.2 |
| 48 | + - 1.0.1 |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + - type: dropdown |
| 52 | + id: is-regression |
| 53 | + attributes: |
| 54 | + label: Is this a regression from previous behavior? |
| 55 | + description: Did this work prior to an update or migration and now no longer functions as expected? |
| 56 | + multiple: true |
| 57 | + options: |
| 58 | + - Yes, this used to work |
| 59 | + - No, this is a new issue |
| 60 | + - Not sure, haven't tested other versions |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + - type: dropdown |
| 64 | + id: version-that-worked |
| 65 | + attributes: |
| 66 | + label: Last Known Working Version |
| 67 | + description: If you answered "Yes," please specify the version where this functionality previously worked. |
| 68 | + options: |
| 69 | + - 1.0.2 |
| 70 | + - 1.0.1 |
| 71 | + validations: |
| 72 | + required: true |
| 73 | + - type: dropdown |
| 74 | + id: platforms-affected |
| 75 | + attributes: |
| 76 | + label: Affected platforms |
| 77 | + description: Select all platforms where you see the issue. If tested on only one platform, choose the last option. |
| 78 | + multiple: true |
| 79 | + options: |
| 80 | + - iOS |
| 81 | + - Android |
| 82 | + - Windows |
| 83 | + - macOS |
| 84 | + - I was *not* able test on other platforms |
| 85 | + validations: |
| 86 | + required: true |
| 87 | + - type: input |
| 88 | + id: platform-versions |
| 89 | + attributes: |
| 90 | + label: Affected Platform Versions |
| 91 | + description: Specify the platform versions where this issue occurs. |
| 92 | + placeholder: E.g. iOS 15, Android 11 and up, Windows SDK 10.0.17134.0, etc. |
| 93 | + validations: |
| 94 | + required: false |
| 95 | + - type: textarea |
| 96 | + id: workaround |
| 97 | + attributes: |
| 98 | + label: Have you found a workaround? |
| 99 | + description: Have you found a workaround? It could help others and assist in resolving the issue. |
| 100 | + - type: textarea |
| 101 | + id: logs |
| 102 | + attributes: |
| 103 | + label: Relevant log output |
| 104 | + description: Include a stack trace for further analysis. |
| 105 | + render: shell |
| 106 | + - type: markdown |
| 107 | + attributes: |
| 108 | + value: | |
| 109 | + |
0 commit comments