From 44d4adbfc7069ae640c67471b7a5ad97eb43fc66 Mon Sep 17 00:00:00 2001 From: lemonslut Date: Sun, 8 Jun 2025 01:13:43 -0600 Subject: [PATCH] eslint: unnecessary escape --- src/modules/translation_ui/components/i18n-entry.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/translation_ui/components/i18n-entry.vue b/src/modules/translation_ui/components/i18n-entry.vue index 55e873f0..65319aff 100644 --- a/src/modules/translation_ui/components/i18n-entry.vue +++ b/src/modules/translation_ui/components/i18n-entry.vue @@ -202,7 +202,7 @@ export default { out = []; for(const line of lines) { - const match = /^(?:(.*?) \()?(\/[^:\)]+):(\d+):(\d+)\)?$/.exec(line); + const match = /^(?:(.*?) \()?(\/[^:)]+):(\d+):(\d+)\)?$/.exec(line); if ( match ) out.push([ match[1] || '???', @@ -334,4 +334,4 @@ export default { } } - \ No newline at end of file +