Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/kitconcept/seo/behaviors/seo.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,19 @@ class ISeo(model.Schema):
title=_("Title"),
description=_(
"Override the meta title. When empty the default title will "
+ "be used. Use maximum 50 characters."
+ "be used. Use maximum 55 characters."
),
max_length = 55,
required=False,
)

seo_description = schema.TextLine(
title=_("Description"),
description=_(
"Override the meta description. When empty the default "
+ "description will be used. Use maximum 150 characters."
+ "description will be used. Use maximum 155 characters."
),
max_length = 155,
required=False,
)

Expand Down
Loading