Skip to content

Commit b0b5570

Browse files
JohnMcLearclaude
andcommitted
chore: resolve merge conflicts with develop
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 parents 8e4b1b3 + 32d9c89 commit b0b5570

File tree

3 files changed

+43
-11
lines changed

3 files changed

+43
-11
lines changed

pnpm-lock.yaml

Lines changed: 39 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/static/js/pad_utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ class PadUtils {
262262
}
263263

264264
if (onEscape) {
265-
node.on('keydown', (evt) => {
265+
node.on('keydown', (evt: JQuery.KeyDownEvent) => {
266266
if (evt.which === 27) {
267267
onEscape(evt);
268268
}
@@ -418,7 +418,7 @@ class PadUtils {
418418
const errorId = randomString(20);
419419

420420
let msgAlreadyVisible = false;
421-
$('.gritter-item .error-msg').each(function () {
421+
$('.gritter-item .error-msg').each(function (this: HTMLElement) {
422422
if ($(this).text() === msg) {
423423
msgAlreadyVisible = true;
424424
}

src/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"compilerOptions": {
33
/* Visit https://aka.ms/tsconfig to read more about this file */
44
"moduleDetection": "force",
5-
"lib": ["ES2023"],
5+
"lib": ["ES2023", "DOM"],
6+
"types": ["node", "jquery"],
67
/* Language and Environment */
78
"target": "es6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
89
/* Modules */

0 commit comments

Comments
 (0)