From f0adfffe386842dbdf3fd032d51881f7e8b128ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Sun, 20 Sep 2026 14:44:10 +0200 Subject: [PATCH] v0.2.81 --- Cargo.lock | 2 +- Cargo.toml | 2 +- static/js/note-files.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 725b8e8..464a662 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2581,7 +2581,7 @@ dependencies = [ [[package]] name = "rustpad" -version = "0.2.80" +version = "0.2.81" dependencies = [ "argon2", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index 25afdc2..4452a03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustpad" -version = "0.2.80" +version = "0.2.81" edition = "2024" rust-version = "1.94" description = "Collaborative Markdown notepad built with Axum, WebSockets and SQLite, PostgreSQL and MySQL" diff --git a/static/js/note-files.js b/static/js/note-files.js index 7d0fb07..7ad62da 100644 --- a/static/js/note-files.js +++ b/static/js/note-files.js @@ -437,7 +437,7 @@ export function bindNoteFiles({ editor, endpoints, getAccessToken, getUploadMaxS if (!expanded) { const codePanel = row.querySelector(".file-code"); 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; }