Skip to content

Commit

Permalink
feat: add notes to editorial block
Browse files Browse the repository at this point in the history
  • Loading branch information
sebousan committed Dec 12, 2023
1 parent e1472b1 commit 4ff86f5
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions admin/app/blocks/editorial.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { background } from '../fields/background.js';
import { cta } from '../fields/cta.js';
import { direction } from '../fields/direction.js';
import { image } from '../fields/image.js';
import { notes } from '../fields/notes.js';
import { surtitle } from '../fields/surtitle.js';
import { title } from '../fields/title.js';
import { text_markdown } from '../fields/text-markdown.js';
import { cta } from '../fields/cta.js';
import { image } from '../fields/image.js';
import { background } from '../fields/background.js';
import { title } from '../fields/title.js';
import { t } from '../i18n/translater.js';

export const block_editorial = {
Expand All @@ -15,5 +16,14 @@ export const block_editorial = {
i18n: true,
collapsed: false,
summary: '{{title}}',
fields: [direction, surtitle, title, text_markdown, cta, image, background]
fields: [
direction,
surtitle,
title,
text_markdown,
notes,
cta,
image,
background
]
};

0 comments on commit 4ff86f5

Please sign in to comment.