Skip to content

Commit

Permalink
hopefully last lint fix...
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoattal committed Dec 10, 2024
1 parent 1b33e06 commit e3ff9f8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ for (const prompt of props.command.prompts) {
function submit() {
const params = props.command.getParams
? props.command.getParams({
...getCommandContext(),
answers,
})
? props.command.getParams(
{

Check failure on line 40 in packages/histoire-app/src/app/components/command/CommandPrompts.vue

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 8 spaces but found 6
...getCommandContext(),

Check failure on line 41 in packages/histoire-app/src/app/components/command/CommandPrompts.vue

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 10 spaces but found 8
answers,

Check failure on line 42 in packages/histoire-app/src/app/components/command/CommandPrompts.vue

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 10 spaces but found 8
},

Check failure on line 43 in packages/histoire-app/src/app/components/command/CommandPrompts.vue

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 8 spaces but found 6
)

Check failure on line 44 in packages/histoire-app/src/app/components/command/CommandPrompts.vue

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 6 spaces but found 4
: answers
executeCommand(props.command, params)
emit('close')
Expand Down
19 changes: 11 additions & 8 deletions packages/histoire-app/src/app/sandbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,18 @@ const app = createApp({
}),
]),
this.story && this.variant
? h(GenericRenderStory, {
story: this.story,
variant: this.variant,
onReady: () => {
window.parent?.postMessage({
type: SANDBOX_READY,
})
? h(
GenericRenderStory,

Check failure on line 75 in packages/histoire-app/src/app/sandbox.ts

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 12 spaces but found 10
{

Check failure on line 76 in packages/histoire-app/src/app/sandbox.ts

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 12 spaces but found 10
story: this.story,

Check failure on line 77 in packages/histoire-app/src/app/sandbox.ts

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 14 spaces but found 12
variant: this.variant,

Check failure on line 78 in packages/histoire-app/src/app/sandbox.ts

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 14 spaces but found 12
onReady: () => {

Check failure on line 79 in packages/histoire-app/src/app/sandbox.ts

View workflow job for this annotation

GitHub Actions / Build and test

Expected indentation of 14 spaces but found 12
window.parent?.postMessage({
type: SANDBOX_READY,
})
},
},
})
)
: null,
]
},
Expand Down

0 comments on commit e3ff9f8

Please sign in to comment.