comparison client/src/store/importschedule.js @ 5467:df1b2c5ae541

Removed another stray debugger statement.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 19 Jul 2021 16:17:08 +0200
parents 064ac1014713
children
comparison
equal deleted inserted replaced
5466:f4ead9ec5f60 5467:df1b2c5ae541
172 const { kind, config, id } = payload; 172 const { kind, config, id } = payload;
173 const eMailNotification = config["send-email"]; 173 const eMailNotification = config["send-email"];
174 const { cron, url } = config; 174 const { cron, url } = config;
175 if (FAIRWAYMARKKINDS[kind]) { 175 if (FAIRWAYMARKKINDS[kind]) {
176 Vue.set(state.currentSchedule, "importType", "fairwaymarks"); 176 Vue.set(state.currentSchedule, "importType", "fairwaymarks");
177 debugger;
178 Vue.set(state.currentSchedule, "selectedMark", FAIRWAYMARKKINDS[kind]); 177 Vue.set(state.currentSchedule, "selectedMark", FAIRWAYMARKKINDS[kind]);
179 } else { 178 } else {
180 Vue.set(state.currentSchedule, "importType", KINDIMPORTTYPE[kind]); 179 Vue.set(state.currentSchedule, "importType", KINDIMPORTTYPE[kind]);
181 } 180 }
182 181