feat: more changes and fixes

This commit is contained in:
Herculino Trotta
2025-11-08 14:06:01 -03:00
parent a878af28f1
commit cd54df6f2d
45 changed files with 412 additions and 476 deletions

View File

@@ -38,7 +38,7 @@ htmx.defineExtension('htmx-download', {
const mimetype = headers['content-type'] || 'application/octet-stream';
// Create Blob
const blob = new Blob([xhr.response], {type: mimetype});
const blob = new Blob([xhr.response], { type: mimetype });
const url = URL.createObjectURL(blob);
// Trigger download

View File

@@ -14,7 +14,8 @@ function initiateTooltips() {
}
tippy('[data-tippy-content]', {
theme: theme
theme: theme,
zIndex: 1050,
});
}