fix: sidebar height scroll, saveTransform bypassing flip config and api gto insert syntax parse
continuous-integration/webhook Deploy concluído (VPS4)

This commit is contained in:
VPS 4 Deploy Agent
2026-06-01 00:09:05 +02:00
parent 8a6923af54
commit 0d0ad5e4a6
4 changed files with 9 additions and 4 deletions
@@ -1 +1 @@
2.1.51
2.1.53
@@ -64,6 +64,8 @@ body {
================================================================ */
.sidebar {
width: var(--sidebar-width);
height: 100vh;
overflow-y: auto;
background: var(--glass-bg);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
@@ -153,7 +153,7 @@ export default function ImageDetailsPage() {
const totalRotation = ((baseRotation + fineTuneAngle) % 360 + 360) % 360;
const saveTransform = async () => {
if (totalRotation === 0 && remark === (image.remark || '')) {
if (totalRotation === 0 && !baseFlipH && !baseFlipV && remark === (image.remark || '')) {
showToast('Nenhuma edição aplicada.', 'error');
return;
}