Compare commits

..

2 Commits

Author SHA1 Message Date
c1a3bb6ba4 Bump version: 1.3.15 → 1.3.16
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 3m26s
2025-07-17 11:21:31 +01:00
a81a096cfb working injection? 2025-07-17 11:21:22 +01:00
3 changed files with 12 additions and 14 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.3.15"
current_version = "1.3.16"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.15
1.3.16

View File

@ -69,7 +69,7 @@
<h2>Load Details Via Text</h2>
<div class="form-group">
<label for="accountDetails">Paste Account Details</label>
<textarea class="form-control" id="accountDetails" rows="4"></textarea>
<textarea class="form-control" id="accountDetails" rows="4" data-shared-text="{{ shared_text }}"></textarea>
</div>
{% endif %}
{% endblock %}
@ -131,11 +131,10 @@
}
});
const sharedText = '{{ shared_text|safe }}';
if (sharedText) {
const accountDetailsTextarea = document.getElementById('accountDetails');
if (accountDetailsTextarea) {
const sharedText = accountDetailsTextarea.dataset.sharedText;
if (sharedText && sharedText !== 'None') {
accountDetailsTextarea.value = sharedText;
const event = new Event('input', {
bubbles: true,
@ -143,7 +142,6 @@
});
accountDetailsTextarea.dispatchEvent(event);
}
}
});
</script>
{% endblock %}