feat: requested moderation and tech review changes (#7019)

* feat: requested moderation and tech review changes

* chore: run prepr

* chore: run prepr

---------

Signed-off-by: ThatGravyBoat <gravy@thatgravyboat.tech>
This commit is contained in:
ThatGravyBoat
2026-08-07 13:34:03 -07:00
committed by GitHub
parent b0394de164
commit 5ef999bf8a
10 changed files with 223 additions and 20 deletions
+12
View File
@@ -115,6 +115,18 @@ const keybinds: { [id: string]: KeybindListener } = {
scope: 'checklist',
action: (ctx) => ctx.actions.tryReject(),
},
'tech-review-top': {
keybind: 'ArrowUp',
description: 'Go to top of the tech review card',
scope: 'tech-review',
action: (ctx) => ctx.actions.goToTop(),
},
'tech-review-bottom': {
keybind: 'ArrowDown',
description: 'Go to bottom of the tech review card',
scope: 'tech-review',
action: (ctx) => ctx.actions.goToBottom(),
},
}
export default keybinds
+7
View File
@@ -27,6 +27,13 @@ const settings = {
description: 'Whether private messages should be highlighted in the chat.',
default: true,
}),
SlicerButtonInVersions: setting.asToggle({
type: 'toggle',
id: 'slicer-button-in-versions',
title: 'Show Slicer Button in Versions Table and Page',
description: 'Whether the slicer button should be shown in the versions table and page.',
default: false,
}),
AdjustPageAlignment: setting.asEnum({
type: 'enum',
id: 'adjust-page-alignment',