Initialer Import des AssetManagers
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
(() => {
|
||||
const dialog = document.getElementById('issue-dialog');
|
||||
const form = document.getElementById('issue-form');
|
||||
if (!dialog || !form) return;
|
||||
const dateInput = form.querySelector('input[name="assigned_on"]');
|
||||
if (dateInput && !dateInput.value) dateInput.value = new Date().toISOString().slice(0, 10);
|
||||
document.querySelectorAll('[data-issue-action]').forEach(button => {
|
||||
button.addEventListener('click', () => {
|
||||
form.action = button.dataset.issueAction;
|
||||
const target = document.getElementById('issue-return-to');
|
||||
if (target) target.value = button.dataset.returnTo || 'detail';
|
||||
dialog.showModal();
|
||||
});
|
||||
});
|
||||
})();
|
||||
Reference in New Issue
Block a user