Make description optional in collection editor (#38536)

This commit is contained in:
diondiondion 2026-04-02 15:32:53 +02:00 committed by GitHub
parent 225069d1f2
commit caf7c21453
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ export interface ApiCollectionJSON {
item_count: number; item_count: number;
name: string; name: string;
description: string; description: string | null;
tag: ApiTagJSON | null; tag: ApiTagJSON | null;
language: string | null; language: string | null;
sensitive: boolean; sensitive: boolean;

View File

@ -182,7 +182,7 @@ export const CollectionDetails: React.FC = () => {
/> />
<TextAreaField <TextAreaField
required required={false}
label={ label={
<FormattedMessage <FormattedMessage
id='collections.collection_description' id='collections.collection_description'