Lines 172-177
export default {
Link Here
|
172 |
return; |
172 |
return; |
173 |
} |
173 |
} |
174 |
nextTick(() => { |
174 |
nextTick(() => { |
|
|
175 |
$("#warning.modal").on("hidden.bs.modal", function () { |
176 |
removeMessages(); |
177 |
}); |
175 |
$("#warning.modal").modal("show"); |
178 |
$("#warning.modal").modal("show"); |
176 |
}); |
179 |
}); |
177 |
}); |
180 |
}); |
Lines 182-187
export default {
Link Here
|
182 |
return; |
185 |
return; |
183 |
} |
186 |
} |
184 |
nextTick(() => { |
187 |
nextTick(() => { |
|
|
188 |
$("#confirmation.modal").on("hidden.bs.modal", function () { |
189 |
removeConfirmationMessages(); |
190 |
}); |
185 |
$("#confirmation.modal").modal("show"); |
191 |
$("#confirmation.modal").modal("show"); |
186 |
}); |
192 |
}); |
187 |
}); |
193 |
}); |
188 |
- |
|
|