Skip to content

Commit

Permalink
Take care of accents in menuStyles names
Browse files Browse the repository at this point in the history
  • Loading branch information
gotcha committed May 16, 2023
1 parent 109eae3 commit f0b652b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/collective/ckeditor/browser/ckeditorsettings.py
Expand Up @@ -11,6 +11,7 @@
from zope.schema import ASCIILine
from zope.schema import Bool
from zope.schema import Choice
from zope.schema import Bytes
from zope.schema import Tuple
from zope.schema import List

Expand Down Expand Up @@ -103,7 +104,7 @@ class ICKEditorBaseSchema(Interface):
),
required=False)

menuStyles = ASCII(
menuStyles = Bytes(
title=_(u"Menu styles"),
description=_(u"Build your own CKEditor menu styles Combo box. "
u"Take care with the javascript syntax. "
Expand Down

0 comments on commit f0b652b

Please sign in to comment.