Skip to content

Commit ce93292

Browse files
committed
[automated] Apply ESLint and Oxfmt fixes
1 parent 37d7095 commit ce93292

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

browser_tests/tests/confirmDialogTextWrap.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ test.describe('Confirm dialog text wrapping', { tag: ['@mobile'] }, () => {
7070
const dialogBox = await dialog.boundingBox()
7171
console.log('DEBUG button box:', JSON.stringify(buttonBox))
7272
console.log('DEBUG dialog box:', JSON.stringify(dialogBox))
73-
console.log('DEBUG viewport:', JSON.stringify(comfyPage.page.viewportSize()))
73+
console.log(
74+
'DEBUG viewport:',
75+
JSON.stringify(comfyPage.page.viewportSize())
76+
)
7477

7578
await expect(confirmButton).toBeInViewport()
7679

src/components/dialog/content/ConfirmationDialogContent.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<template>
2-
<section
3-
class="m-2 mt-4 flex flex-col gap-6 whitespace-pre-wrap break-words"
4-
>
2+
<section class="m-2 mt-4 flex flex-col gap-6 whitespace-pre-wrap break-words">
53
<div>
64
<span>{{ message }}</span>
75
<ul v-if="itemList?.length" class="m-0 mt-2 flex flex-col gap-2 pl-4">

0 commit comments

Comments
 (0)