aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services/tabs/Tabbar.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/services/tabs/Tabbar.js')
-rw-r--r--src/components/services/tabs/Tabbar.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/services/tabs/Tabbar.js b/src/components/services/tabs/Tabbar.js
index db7a69bfc..0f608c415 100644
--- a/src/components/services/tabs/Tabbar.js
+++ b/src/components/services/tabs/Tabbar.js
@@ -33,7 +33,7 @@ export default @observer class TabBar extends Component {
33 reorder({ oldIndex, newIndex }); 33 reorder({ oldIndex, newIndex });
34 }; 34 };
35 35
36 shouldPreventSorting = event => event.target.tagName !== 'LI'; 36 shouldPreventSorting = (event) => event.target.tagName !== 'LI';
37 37
38 toggleService = ({ serviceId, isEnabled }) => { 38 toggleService = ({ serviceId, isEnabled }) => {
39 const { updateService } = this.props; 39 const { updateService } = this.props;
@@ -95,10 +95,10 @@ export default @observer class TabBar extends Component {
95 toggleNotifications={toggleNotifications} 95 toggleNotifications={toggleNotifications}
96 toggleAudio={toggleAudio} 96 toggleAudio={toggleAudio}
97 deleteService={deleteService} 97 deleteService={deleteService}
98 disableService={args => this.disableService(args)} 98 disableService={(args) => this.disableService(args)}
99 enableService={args => this.enableService(args)} 99 enableService={(args) => this.enableService(args)}
100 hibernateService={args => this.hibernateService(args)} 100 hibernateService={(args) => this.hibernateService(args)}
101 wakeUpService={args => this.wakeUpService(args)} 101 wakeUpService={(args) => this.wakeUpService(args)}
102 openSettings={openSettings} 102 openSettings={openSettings}
103 distance={20} 103 distance={20}
104 axis="y" 104 axis="y"