aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-10-04 14:07:16 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-10-04 14:07:16 +0200
commitb7eb3e2a776a985a87bd857d6d33a9853faa55ce (patch)
treea112663b7ef48cdff525c902804a5dc75ace2300 /src/components/services
parentUpdate tooltip position (diff)
downloadferdium-app-b7eb3e2a776a985a87bd857d6d33a9853faa55ce.tar.gz
ferdium-app-b7eb3e2a776a985a87bd857d6d33a9853faa55ce.tar.zst
ferdium-app-b7eb3e2a776a985a87bd857d6d33a9853faa55ce.zip
webControls polishing
Diffstat (limited to 'src/components/services')
-rw-r--r--src/components/services/content/ServiceView.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/services/content/ServiceView.js b/src/components/services/content/ServiceView.js
index e8df58a1e..3b09518c5 100644
--- a/src/components/services/content/ServiceView.js
+++ b/src/components/services/content/ServiceView.js
@@ -13,6 +13,7 @@ import ServiceDisabled from './ServiceDisabled';
13import ServiceRestricted from './ServiceRestricted'; 13import ServiceRestricted from './ServiceRestricted';
14import ServiceWebview from './ServiceWebview'; 14import ServiceWebview from './ServiceWebview';
15import WebControlsScreen from '../../../features/webControls/containers/WebControlsScreen'; 15import WebControlsScreen from '../../../features/webControls/containers/WebControlsScreen';
16import { CUSTOM_WEBSITE_ID } from '../../../features/webControls/constants';
16 17
17export default @observer class ServiceView extends Component { 18export default @observer class ServiceView extends Component {
18 static propTypes = { 19 static propTypes = {
@@ -139,7 +140,7 @@ export default @observer class ServiceView extends Component {
139 /> 140 />
140 ) : ( 141 ) : (
141 <> 142 <>
142 {service.recipe.id === 'franz-custom-website' && ( 143 {service.recipe.id === CUSTOM_WEBSITE_ID && (
143 <WebControlsScreen service={service} /> 144 <WebControlsScreen service={service} />
144 )} 145 )}
145 <ServiceWebview 146 <ServiceWebview