selected-topics-default

This commit is contained in:
Untone 2024-01-22 20:37:27 +03:00
parent e5d3235846
commit 0faa9df81c
2 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ export const PublishSettings = (props: Props) => {
title: props.form.title, title: props.form.title,
subtitle: props.form.subtitle, subtitle: props.form.subtitle,
description: composeDescription(), description: composeDescription(),
selectedTopics: [],
} }
const { const {

View File

@ -23,7 +23,7 @@ export type ShoutForm = {
shoutId: number shoutId: number
slug: string slug: string
title: string title: string
subtitle: string subtitle?: string
lead?: string lead?: string
description?: string description?: string
selectedTopics: Topic[] selectedTopics: Topic[]