This commit is contained in:
Mateusz Gruszczyński
2026-09-20 14:44:10 +02:00
parent de3cb9f111
commit f0adfffe38
3 changed files with 3 additions and 3 deletions
Generated
+1 -1
View File
@@ -2581,7 +2581,7 @@ dependencies = [
[[package]] [[package]]
name = "rustpad" name = "rustpad"
version = "0.2.80" version = "0.2.81"
dependencies = [ dependencies = [
"argon2", "argon2",
"aws-config", "aws-config",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "rustpad" name = "rustpad"
version = "0.2.80" version = "0.2.81"
edition = "2024" edition = "2024"
rust-version = "1.94" rust-version = "1.94"
description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL" description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL"
+1 -1
View File
@@ -437,7 +437,7 @@ export function bindNoteFiles({ editor, endpoints, getAccessToken, getUploadMaxS
if (!expanded) { if (!expanded) {
const codePanel = row.querySelector(".file-code"); const codePanel = row.querySelector(".file-code");
if (codePanel) codePanel.hidden = true; if (codePanel) codePanel.hidden = true;
row.querySelectorAll("[data-show-file-code][aria-pressed="true"]").forEach(button => button.setAttribute("aria-pressed", "false")); row.querySelectorAll('[data-show-file-code][aria-pressed="true"]').forEach(button => button.setAttribute("aria-pressed", "false"));
} }
return; return;
} }