Skip to content
Snippets Groups Projects
Verified Commit 78bea7dc authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix lint

parent 4c50eff9
No related branches found
No related tags found
1 merge request!1655Resolve "Introduce non-dialog object form"
Pipeline #195653 passed
......@@ -50,7 +50,7 @@ export default {
@save="save"
@cancel="cancel"
>
<template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"
<template v-for="(_, slot) of $scopedSlots" #[slot]="scope"
><slot :name="slot" v-bind="scope"
/></template>
</object-form>
......
......@@ -28,7 +28,7 @@
@save="dialog = false"
@cancel="dialog = false"
>
<template v-for="(_, slot) of $scopedSlots" v-slot:[slot]="scope"
<template v-for="(_, slot) of $scopedSlots" #[slot]="scope"
><slot :name="slot" v-bind="scope"
/></template>
</object-form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment