Commit 791e5024 authored by kushalpandya's avatar kushalpandya Committed by Jarka Kadlecova

Prevent default action of Flash banner action link click

parent fb1ba0a5
...@@ -82,7 +82,8 @@ export default class IntegrationSettingsForm { ...@@ -82,7 +82,8 @@ export default class IntegrationSettingsForm {
if (res.error) { if (res.error) {
new Flash(`${res.message}.`, null, null, { new Flash(`${res.message}.`, null, null, {
title: 'Save anyway', title: 'Save anyway',
clickHandler: () => { clickHandler: (e) => {
e.preventDefault();
this.$form.submit(); this.$form.submit();
}, },
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment