changeset 3839:03e8e6cc0b79

import_schedule: linting
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 08 Jul 2019 12:34:10 +0200
parents 6c3e5dd2b596
children 387f239018c7
files client/src/components/importconfiguration/ScheduledImports.vue
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/components/importconfiguration/ScheduledImports.vue	Fri Jul 05 14:00:23 2019 +0200
+++ b/client/src/components/importconfiguration/ScheduledImports.vue	Mon Jul 08 12:34:10 2019 +0200
@@ -763,7 +763,9 @@
       this.retry =
         this.currentSchedule.trys === null ||
         this.currentSchedule.trys === undefined ||
-        this.currentSchedule === 0 ? false : true;
+        this.currentSchedule === 0
+          ? false
+          : true;
     },
     isWeekly(cron) {
       return /0 \d{1,2} \d{1,2} \* \* \d{1}/.test(cron);