Compare commits
2 Commits
c1a3bb6ba4
...
1fc2fc46e0
Author | SHA1 | Date | |
---|---|---|---|
1fc2fc46e0 | |||
603d85b529 |
@ -1,5 +1,5 @@
|
|||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "1.3.16"
|
current_version = "1.3.17"
|
||||||
commit = true
|
commit = true
|
||||||
tag = true
|
tag = true
|
||||||
tag_name = "{new_version}"
|
tag_name = "{new_version}"
|
||||||
|
@ -128,20 +128,19 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
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>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user