react-native-in-app-debugger 1.0.69 → 1.0.71
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
|
@@ -192,7 +192,7 @@ export default ({
|
|
|
192
192
|
<View style={{ flex: 1, flexDirection: "row" }}>
|
|
193
193
|
{[
|
|
194
194
|
"api",
|
|
195
|
-
!!variables && "
|
|
195
|
+
!!variables && "vars",
|
|
196
196
|
"libs",
|
|
197
197
|
...tabs.map((t) => t.title),
|
|
198
198
|
]
|
|
@@ -227,7 +227,7 @@ export default ({
|
|
|
227
227
|
</View>
|
|
228
228
|
<X style={{ marginRight: 5 }} onPress={() => setIsOpen(false)} />
|
|
229
229
|
</View>
|
|
230
|
-
{tab === "
|
|
230
|
+
{tab === "vars" && !!variables && (
|
|
231
231
|
<Variables variables={variables} />
|
|
232
232
|
)}
|
|
233
233
|
{tab === "libs" && <Libs />}
|
package/package.json
CHANGED