Compare commits
No commits in common. "1fc2fc46e0c52ad819b46ab193e3afb78ab1cdf0" and "c1a3bb6ba4e7b831e31ff8e6dc4aa6bbae8469fe" have entirely different histories.
1fc2fc46e0
...
c1a3bb6ba4
@ -1,5 +1,5 @@
|
||||
[tool.bumpversion]
|
||||
current_version = "1.3.17"
|
||||
current_version = "1.3.16"
|
||||
commit = true
|
||||
tag = true
|
||||
tag_name = "{new_version}"
|
||||
|
@ -128,19 +128,20 @@
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
const sharedText = accountDetailsTextarea.dataset.sharedText;
|
||||
|
||||
if (sharedText && sharedText !== 'None') {
|
||||
accountDetailsTextarea.value = sharedText;
|
||||
const event = new Event('input', {
|
||||
bubbles: true,
|
||||
cancelable: true,
|
||||
});
|
||||
accountDetailsTextarea.dispatchEvent(event);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
const accountDetailsTextarea = document.getElementById('accountDetails');
|
||||
const sharedText = accountDetailsTextarea.dataset.sharedText;
|
||||
|
||||
if (sharedText && sharedText !== 'None') {
|
||||
accountDetailsTextarea.value = sharedText;
|
||||
const event = new Event('input', {
|
||||
bubbles: true,
|
||||
cancelable: true,
|
||||
});
|
||||
accountDetailsTextarea.dispatchEvent(event);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user