diff --git a/package-lock.json b/package-lock.json index 5e8b99b11..1ef339fca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3860,9 +3860,9 @@ "integrity": "sha512-o1JrraDGpMFaPtkuvtZ4cIBC/xuJn90KBGlxRrm3FxcfER1bPaBnBsTnypF65p+CMTXul2KrZodb3Vv3MScB4A==" }, "express-rate-limit": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.4.1.tgz", - "integrity": "sha512-ZQh2h3qiu7wWdvWNYHznBhaOp2ZIXNnT4hl2Ff608STeWtCuJ251NzqQlk7mo5wnO2HmrydBYHuVA9Z3S3ZtXg==" + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-5.5.0.tgz", + "integrity": "sha512-/1mrKggjXMxd1/ghPub5N3d36u5VlK8KjbQFQLxYub09BWSSgSXMQbXgFiIW0BYxjM49YCj8bkihONZR2U4+mQ==" }, "express-session": { "version": "1.17.2", diff --git a/package.json b/package.json index 0d107ab4f..e1f6961a6 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "electron-window-state": "5.0.3", "express": "4.17.1", "express-partial-content": "^1.0.2", - "express-rate-limit": "5.4.1", + "express-rate-limit": "5.5.0", "express-session": "1.17.2", "fs-extra": "10.0.0", "helmet": "4.6.0", diff --git a/src/becca/entities/note_revision.js b/src/becca/entities/note_revision.js index 95582ed33..dce539e76 100644 --- a/src/becca/entities/note_revision.js +++ b/src/becca/entities/note_revision.js @@ -49,7 +49,7 @@ class NoteRevision extends AbstractEntity { this.title = protectedSessionService.decryptString(this.title); } else { - this.title = "[Protected]"; + this.title = "[protected]"; } } } diff --git a/src/public/app/widgets/tab_row.js b/src/public/app/widgets/tab_row.js index 4434b0d20..f44349ac5 100644 --- a/src/public/app/widgets/tab_row.js +++ b/src/public/app/widgets/tab_row.js @@ -33,9 +33,9 @@ const TAB_SIZE_MINI = 48; const TAB_TPL = `
+
-
×
`; @@ -169,8 +169,6 @@ const TAB_ROW_TPL = ` bottom: 0; right: 0; left: 0; - border-top-left-radius: 8px; - border-top-right-radius: 8px; } .tab-row-widget .note-tab .note-tab-close { diff --git a/src/routes/api/recent_changes.js b/src/routes/api/recent_changes.js index ecb0e2733..2d54af93b 100644 --- a/src/routes/api/recent_changes.js +++ b/src/routes/api/recent_changes.js @@ -74,7 +74,7 @@ function getRecentChanges(req) { change.current_title = protectedSessionService.decryptString(change.current_title); } else { - change.title = change.current_title = "[Protected]"; + change.title = change.current_title = "[protected]"; } }