aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/webControls/containers/WebControlsScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/webControls/containers/WebControlsScreen.js')
-rw-r--r--src/features/webControls/containers/WebControlsScreen.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/features/webControls/containers/WebControlsScreen.js b/src/features/webControls/containers/WebControlsScreen.js
index 56ba60c37..d638b831c 100644
--- a/src/features/webControls/containers/WebControlsScreen.js
+++ b/src/features/webControls/containers/WebControlsScreen.js
@@ -7,6 +7,7 @@ import WebControls from '../components/WebControls';
7import ServicesStore from '../../../stores/ServicesStore'; 7import ServicesStore from '../../../stores/ServicesStore';
8import Service from '../../../models/Service'; 8import Service from '../../../models/Service';
9import { SEARCH_ENGINE_URLS } from '../../../config'; 9import { SEARCH_ENGINE_URLS } from '../../../config';
10import AppStore from '../../../stores/AppStore';
10 11
11const URL_EVENTS = [ 12const URL_EVENTS = [
12 'load-commit', 13 'load-commit',
@@ -128,11 +129,7 @@ WebControlsScreen.wrappedComponent.propTypes = {
128 services: PropTypes.instanceOf(ServicesStore).isRequired, 129 services: PropTypes.instanceOf(ServicesStore).isRequired,
129 }).isRequired, 130 }).isRequired,
130 actions: PropTypes.shape({ 131 actions: PropTypes.shape({
131 app: PropTypes.shape({ 132 app: PropTypes.instanceOf(AppStore).isRequired,
132 openExternalUrl: PropTypes.func.isRequired, 133 service: PropTypes.instanceOf(ServicesStore).isRequired,
133 }).isRequired,
134 service: PropTypes.shape({
135 reloadActive: PropTypes.func.isRequired,
136 }).isRequired,
137 }).isRequired, 134 }).isRequired,
138}; 135};