diff --git a/docs/extending/jssetup.md b/docs/extending/jssetup.md index 2d64b9f35..301ddc53b 100644 --- a/docs/extending/jssetup.md +++ b/docs/extending/jssetup.md @@ -20,6 +20,7 @@ Example `package.json`: "version": "1.0.0", "main": "index.tsx", "license": "MIT", + "keywords": ["flipper-plugin"], "dependencies": {}, "title": "My Plugin", "icon": "apps", diff --git a/docs/tutorial/js-table.md b/docs/tutorial/js-table.md index 51c2aa581..c5cb40551 100644 --- a/docs/tutorial/js-table.md +++ b/docs/tutorial/js-table.md @@ -49,6 +49,7 @@ you can also specify a title to show in the Flipper sidebar and an icon to displ "version": "1.0.0", "main": "index.tsx", "license": "MIT", + "keywords": ["flipper-plugin"], "icon": "apps", "title": "Sea Mammals", "dependencies": { diff --git a/src/chrome/PluginInstaller.tsx b/src/chrome/PluginInstaller.tsx index 79b2f48b2..30423b894 100644 --- a/src/chrome/PluginInstaller.tsx +++ b/src/chrome/PluginInstaller.tsx @@ -111,7 +111,6 @@ export default function(props: {onHide: () => any}) {