From eaec45818eec0f239b9f9ff1f08d033423998a12 Mon Sep 17 00:00:00 2001 From: sahilvunnam <118228103+sahilvunnam@users.noreply.github.com> Date: Fri, 15 Nov 2024 12:48:28 -0800 Subject: [PATCH] community: smoother description (fixes #6460) (#7777) Co-authored-by: dogi --- package.json | 2 +- src/app/community/community.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d53547d2f7..7fdd02aa64 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "planet", "license": "AGPL-3.0", - "version": "0.15.45", + "version": "0.15.46", "myplanet": { "latest": "v0.20.97", "min": "v0.19.97" diff --git a/src/app/community/community.component.ts b/src/app/community/community.component.ts index 2865a9bbe6..836222c18a 100644 --- a/src/app/community/community.component.ts +++ b/src/app/community/community.component.ts @@ -339,7 +339,7 @@ export class CommunityComponent implements OnInit, OnDestroy { }; this.dialogsFormService.openDialogsForm( this.team.description ? $localize`Edit Description` : $localize`Add Description`, - [ { name: 'description', placeholder: $localize`Description`, type: 'markdown', required: true, imageGroup: 'community' } ], + [ { name: 'description', placeholder: $localize`Description`, type: 'markdown', required: false, imageGroup: 'community' } ], { description: this.team.description || '' }, { autoFocus: true, onSubmit: submitDescription } );