react-native-in-app-debugger 1.0.27 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Api.jsx CHANGED
@@ -130,7 +130,7 @@ export default (props) => {
130
130
  textDecorationLine: errorOnly ? "line-through" : undefined,
131
131
  }}
132
132
  >
133
- {apis.filter(isError).length} Error(s) Only
133
+ {apis.filter(isError).length} error{apis.filter(isError).length > 1 ? 's' : ''}
134
134
  </Text>
135
135
  </TouchableOpacity>
136
136
  )}
@@ -166,6 +166,7 @@ export default (props) => {
166
166
  contentContainerStyle={{ padding: 5 }}
167
167
  keyExtractor={(i) => i.id}
168
168
  stickySectionHeadersEnabled
169
+ showsVerticalScrollIndicator
169
170
  sections={apis
170
171
  .filter((a) =>
171
172
  !filter || filterUrlOnly
package/Variables.jsx CHANGED
@@ -18,6 +18,7 @@ export default ({ variables }) => {
18
18
  data={Object.keys(variables).filter(
19
19
  (k) => !filter || variables[k].toLowerCase().includes(filter) || k.toLowerCase().includes(filter),
20
20
  )}
21
+ showsVerticalScrollIndicator
21
22
  keyExtractor={(i) => i}
22
23
  renderItem={({ item }) => (
23
24
  <Text selectable style={{ color: 'white', marginVertical: 10 }}>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-in-app-debugger",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "description": "",
5
5
  "main": "index.jsx",
6
6
  "scripts": {