|
| 1 | +name: "Wrong rendered by stack" |
| 2 | +description: Report rendering issues related to component render stack ("rendered by" chain) |
| 3 | +labels: ["bug"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: Please share the component render stack (React DevTools "rendered by" chain) so we can reproduce the rendering issue. |
| 8 | + |
| 9 | + - type: textarea |
| 10 | + id: bug-description |
| 11 | + attributes: |
| 12 | + label: Describe the rendering issue |
| 13 | + description: What did you expect to see, and what is rendered instead? |
| 14 | + placeholder: I expect ... but instead ... |
| 15 | + validations: |
| 16 | + required: true |
| 17 | + |
| 18 | + - type: textarea |
| 19 | + id: rendered-by-stack |
| 20 | + attributes: |
| 21 | + label: Rendered-by stack details |
| 22 | + description: Describe the component hierarchy that renders the affected element (as seen in React DevTools "rendered by"). |
| 23 | + placeholder: | |
| 24 | + App |
| 25 | + -> Screen |
| 26 | + -> SomeContainer |
| 27 | + -> GrabTarget |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + |
| 31 | + - type: textarea |
| 32 | + id: reproduction-steps |
| 33 | + attributes: |
| 34 | + label: Steps to reproduce |
| 35 | + placeholder: | |
| 36 | + 1. Render component ... |
| 37 | + 2. Trigger state/prop change ... |
| 38 | + 3. Observe affected element ... |
| 39 | + 4. Observe ... |
| 40 | + validations: |
| 41 | + required: true |
| 42 | + |
| 43 | + - type: textarea |
| 44 | + id: code-sample |
| 45 | + attributes: |
| 46 | + label: Minimal reproduction |
| 47 | + description: Share relevant component tree/screen code or a repository URL. |
| 48 | + placeholder: Reproduction URL or snippet |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + |
| 52 | + - type: input |
| 53 | + id: react-native-version |
| 54 | + attributes: |
| 55 | + label: React Native version |
| 56 | + placeholder: 0.76.3 |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + |
| 60 | + - type: input |
| 61 | + id: react-native-grab-version |
| 62 | + attributes: |
| 63 | + label: react-native-grab version |
| 64 | + placeholder: 1.0.0 |
| 65 | + validations: |
| 66 | + required: true |
| 67 | + |
| 68 | + - type: dropdown |
| 69 | + id: router |
| 70 | + attributes: |
| 71 | + label: Routing library |
| 72 | + description: Are you using react-navigation or Expo Router? |
| 73 | + options: |
| 74 | + - react-navigation |
| 75 | + - Expo Router |
| 76 | + - Both |
| 77 | + - Neither |
| 78 | + validations: |
| 79 | + required: true |
| 80 | + |
| 81 | + - type: dropdown |
| 82 | + id: native-navigators |
| 83 | + attributes: |
| 84 | + label: Using native navigators? |
| 85 | + options: |
| 86 | + - "Yes" |
| 87 | + - "No" |
| 88 | + - Not sure |
| 89 | + validations: |
| 90 | + required: true |
| 91 | + |
| 92 | + - type: textarea |
| 93 | + id: environment |
| 94 | + attributes: |
| 95 | + label: Environment details |
| 96 | + description: Platform/device/emulator, OS version, Hermes/JSC, and other relevant setup details. |
| 97 | + validations: |
| 98 | + required: true |
| 99 | + |
| 100 | + - type: textarea |
| 101 | + id: logs |
| 102 | + attributes: |
| 103 | + label: Logs / screenshots / recordings |
| 104 | + description: Paste logs and attach screenshots/videos if possible. |
0 commit comments