From e93c79af029de8115497353c02a726f0507871e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C5=BEe=20Fortun?= Date: Mon, 12 Jun 2023 16:05:11 +0200 Subject: [PATCH] Add magnified prop to block wrap --- .../web/compose/src/components/PageBlocks/Wrap/base.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/client/web/compose/src/components/PageBlocks/Wrap/base.vue b/client/web/compose/src/components/PageBlocks/Wrap/base.vue index d581e5a81..4710e5812 100644 --- a/client/web/compose/src/components/PageBlocks/Wrap/base.vue +++ b/client/web/compose/src/components/PageBlocks/Wrap/base.vue @@ -22,6 +22,12 @@ export default { required: false, default: '', }, + + magnified: { + type: Boolean, + required: false, + default: false, + }, }, computed: { @@ -34,7 +40,7 @@ export default { }, isBlockMagnified () { - return this.$attrs.magnified + return this.magnified }, headerSet () {