summaryrefslogtreecommitdiff
path: root/src/client/pages/page-editor/page-editor.blocks.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/pages/page-editor/page-editor.blocks.vue')
-rw-r--r--src/client/pages/page-editor/page-editor.blocks.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/pages/page-editor/page-editor.blocks.vue b/src/client/pages/page-editor/page-editor.blocks.vue
index c6ec42b8da..6e9408e0b7 100644
--- a/src/client/pages/page-editor/page-editor.blocks.vue
+++ b/src/client/pages/page-editor/page-editor.blocks.vue
@@ -1,6 +1,6 @@
<template>
<x-draggable tag="div" :list="blocks" handle=".drag-handle" :group="{ name: 'blocks' }" animation="150" swap-threshold="0.5">
- <component v-for="block in blocks" :is="'x-' + block.type" :value="block" @input="updateItem" @remove="() => removeItem(block)" :key="block.id" :aoi-script="aoiScript"/>
+ <component v-for="block in blocks" :is="'x-' + block.type" :value="block" @input="updateItem" @remove="() => removeItem(block)" :key="block.id" :hpml="hpml"/>
</x-draggable>
</template>
@@ -32,7 +32,7 @@ export default Vue.extend({
type: Array,
required: true
},
- aoiScript: {
+ hpml: {
required: true,
},
},