From f8fbaad43522b91374eaed5e3df6fe47bc94862f Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Tue, 1 Oct 2019 21:51:34 +0200 Subject: feat(Custom Websites): Add simple browser controls --- src/components/services/content/ServiceView.js | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'src/components/services') diff --git a/src/components/services/content/ServiceView.js b/src/components/services/content/ServiceView.js index f65f51346..e8df58a1e 100644 --- a/src/components/services/content/ServiceView.js +++ b/src/components/services/content/ServiceView.js @@ -12,6 +12,7 @@ import WebviewErrorHandler from './ErrorHandlers/WebviewErrorHandler'; import ServiceDisabled from './ServiceDisabled'; import ServiceRestricted from './ServiceRestricted'; import ServiceWebview from './ServiceWebview'; +import WebControlsScreen from '../../../features/webControls/containers/WebControlsScreen'; export default @observer class ServiceView extends Component { static propTypes = { @@ -137,11 +138,16 @@ export default @observer class ServiceView extends Component { type={service.restrictionType} /> ) : ( - + <> + {service.recipe.id === 'franz-custom-website' && ( + + )} + + )} )} -- cgit v1.2.3-54-g00ecf