Release 1.5.15

This commit is contained in:
2026-07-26 21:06:03 +01:00
parent 9c5cabbd13
commit 42279d95aa
6 changed files with 70 additions and 14 deletions
+1 -1
View File
@@ -290,7 +290,7 @@
.dashboard-action-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
}
+1 -1
View File
@@ -1277,7 +1277,7 @@ import { createTemplateSelectorLockController } from '/assets/js/slides/slide-fo
var duration = Number(video.duration);
cleanup();
if (Number.isFinite(duration) && duration > 0) {
resolve(Math.max(1, Math.round(duration)));
resolve(Math.max(0.001, Math.round(duration * 1000) / 1000));
} else {
reject(new Error('The video duration could not be read.'));
}