aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services/content/ServiceView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/services/content/ServiceView.tsx')
-rw-r--r--src/components/services/content/ServiceView.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/services/content/ServiceView.tsx b/src/components/services/content/ServiceView.tsx
index 0754bccc5..19dcdd07a 100644
--- a/src/components/services/content/ServiceView.tsx
+++ b/src/components/services/content/ServiceView.tsx
@@ -21,7 +21,7 @@ interface IProps {
21 reload: () => void; 21 reload: () => void;
22 edit: () => void; 22 edit: () => void;
23 enable: () => void; 23 enable: () => void;
24 // isActive?: boolean; // TODO - [TECH DEBT][PROP NOT USED IN COMPONENT] check it 24 // isActive?: boolean; // TODO: [TECH DEBT][PROP NOT USED IN COMPONENT] check it
25 stores?: RealStores; 25 stores?: RealStores;
26 isSpellcheckerEnabled: boolean; 26 isSpellcheckerEnabled: boolean;
27} 27}
@@ -35,7 +35,7 @@ interface IState {
35@inject('stores', 'actions') 35@inject('stores', 'actions')
36@observer 36@observer
37class ServiceView extends Component<IProps, IState> { 37class ServiceView extends Component<IProps, IState> {
38 // hibernationTimer = null; // TODO - [TS DEBT] class property not reassigned, need to find its purpose 38 // hibernationTimer = null; // TODO: [TS DEBT] class property not reassigned, need to find its purpose
39 39
40 autorunDisposer: IReactionDisposer | undefined; 40 autorunDisposer: IReactionDisposer | undefined;
41 41
@@ -65,7 +65,7 @@ class ServiceView extends Component<IProps, IState> {
65 componentWillUnmount() { 65 componentWillUnmount() {
66 this.autorunDisposer!(); 66 this.autorunDisposer!();
67 clearTimeout(this.forceRepaintTimeout!); 67 clearTimeout(this.forceRepaintTimeout!);
68 // clearTimeout(this.hibernationTimer); // TODO - [TS DEBT] class property not reassigned, need to find its purpose 68 // clearTimeout(this.hibernationTimer); // TODO: [TS DEBT] class property not reassigned, need to find its purpose
69 } 69 }
70 70
71 render() { 71 render() {
@@ -111,7 +111,7 @@ class ServiceView extends Component<IProps, IState> {
111 {service.hasCrashed && ( 111 {service.hasCrashed && (
112 <WebviewCrashHandler 112 <WebviewCrashHandler
113 name={service.recipe.name} 113 name={service.recipe.name}
114 // webview={service.webview} // TODO - [TECH DEBT][PROPS NOT EXIST IN COMPONENT] check it 114 // webview={service.webview} // TODO: [TECH DEBT][PROPS NOT EXIST IN COMPONENT] check it
115 reload={reload} 115 reload={reload}
116 /> 116 />
117 )} 117 )}
@@ -177,7 +177,7 @@ class ServiceView extends Component<IProps, IState> {
177 {service.isActive && ( 177 {service.isActive && (
178 <ServiceDisabled 178 <ServiceDisabled
179 name={service.name === '' ? service.recipe.name : service.name} 179 name={service.name === '' ? service.recipe.name : service.name}
180 // webview={service.webview} // TODO - [TECH DEBT][PROPS NOT EXIST IN COMPONENT] check it 180 // webview={service.webview} // TODO: [TECH DEBT][PROPS NOT EXIST IN COMPONENT] check it
181 enable={enable} 181 enable={enable}
182 /> 182 />
183 )} 183 )}