react-native-in-app-debugger 2.0.26 → 2.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/index.jsx +2 -2
- package/package.json +1 -1
package/index.jsx
CHANGED
|
@@ -208,7 +208,7 @@ export default ({
|
|
|
208
208
|
)}
|
|
209
209
|
</View>
|
|
210
210
|
{displayLabels.map((l) => (
|
|
211
|
-
<Label key={l}>{l}</Label>
|
|
211
|
+
<Label selectable={false} key={l}>{l}</Label>
|
|
212
212
|
))}
|
|
213
213
|
</Pressable>
|
|
214
214
|
) : (
|
|
@@ -265,7 +265,7 @@ export default ({
|
|
|
265
265
|
);
|
|
266
266
|
}}
|
|
267
267
|
/>
|
|
268
|
-
<X style={{ marginRight:
|
|
268
|
+
<X style={{ paddingTop:3, marginRight:10 }} onPress={() => setIsOpen(false)} />
|
|
269
269
|
</View>
|
|
270
270
|
{tab === "vars" && <Variables variables={variables} />}
|
|
271
271
|
{tab === "mock" && (
|
package/package.json
CHANGED