Major UI/UX overhaul on Tickets listing / Kanban and ticket details

This commit is contained in:
johnnyq
2026-08-01 14:12:03 -04:00
parent 4fec57709a
commit cdb4a43b89
12 changed files with 2160 additions and 1667 deletions

View File

@@ -29,14 +29,8 @@ function copyPasswordViaCredentialID(button, credential_id) {
const credential = JSON.parse(data);
navigator.clipboard.writeText(credential.password).then(function() {
// Flash "Copied!" tooltip, matching the ClipboardJS success handler in app.js
jQuery(button).tooltip('hide')
.attr('data-original-title', 'Copied!')
.tooltip('show');
setTimeout(function() {
jQuery(button).tooltip('hide');
}, 1000);
// Same "Copied!" flash the ClipboardJS handler in app.js uses
flashTooltip(button, 'Copied!');
});
}
);