Skip to content

Commit

Permalink
fix(MediaBlock): add border property into schema (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunatic174 authored Jun 1, 2023
1 parent 56b4d02 commit 5365791
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sub-blocks/MediaCard/schema.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import {AnimatableProps, BaseProps, MediaProps} from '../../schema/validators/common';
import {AnimatableProps, BaseProps, CardBase, MediaProps} from '../../schema/validators/common';

export const MediaCardBlock = {
'media-card': {
additionalProperties: false,
required: [],
properties: {
...BaseProps,
...CardBase,
...MediaProps,
...AnimatableProps,
},
Expand Down

0 comments on commit 5365791

Please sign in to comment.