Enable import all the nodes for android

Summary: Enables Import and Export for all the nodes for android. Also search and Accessibility feature works

Reviewed By: danielbuechele

Differential Revision: D14406016

fbshipit-source-id: 8976db66d1ca91e98c52983a31ea584764bde0f6
This commit is contained in:
Pritesh Nandgaonkar
2019-03-12 07:05:03 -07:00
committed by Facebook Github Bot
parent 063d8aa416
commit 1c8fffa20b
5 changed files with 53 additions and 11 deletions

View File

@@ -183,8 +183,9 @@ export default connect<Props, OwnProps, _, _, _, _>(
pluginKey = getPluginKey(target.id, activePlugin.id);
}
}
const isArchivedDevice = selectedDevice instanceof ArchivedDevice;
const isArchivedDevice = !selectedDevice
? false
: selectedDevice instanceof ArchivedDevice;
return {
pluginState: pluginStates[pluginKey],
activePlugin,