remove bold as a feature on lead fields
This commit is contained in:
@ -15,7 +15,7 @@ class NewsIndex(Page):
|
||||
max_count = 1
|
||||
subpage_types = ["news.NewsPage"]
|
||||
|
||||
lead = RichTextField(features=["bold", "italic", "link"], blank=True)
|
||||
lead = RichTextField(features=["italic", "link"], blank=True)
|
||||
|
||||
content_panels = Page.content_panels + [
|
||||
FieldPanel("lead", heading="Ingress"),
|
||||
@ -34,7 +34,7 @@ class NewsPage(WPImportedPageMixin, Page):
|
||||
show_in_menus = False
|
||||
|
||||
excerpt = models.TextField(max_length=512, blank=False)
|
||||
lead = RichTextField(features=["bold", "italic", "link"], blank=True)
|
||||
lead = RichTextField(features=["italic", "link"], blank=True)
|
||||
body = CommonStreamField
|
||||
featured_image = models.ForeignKey(
|
||||
"images.CustomImage",
|
||||
|
Reference in New Issue
Block a user