Skip to content

Commit

Permalink
bug-fixed: not sent null text if textarea is null in action-reply ima…
Browse files Browse the repository at this point in the history
…ge and gallery elements
  • Loading branch information
Gabriele Panico committed Oct 30, 2023
1 parent 6201c59 commit 4645553
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class CDSTextareaComponent implements OnInit {
@Input() text: string = '';
@Input() limitCharsText: number = TEXT_CHARS_LIMIT;
// @Input() textMessage: string;
@Input() control: FormControl<string> = new FormControl();
@Input() control: FormControl<string> = new FormControl('');
@Input() showUtils: boolean = true;
@Input() emojiPikerBtn: boolean = true;
@Input() setAttributeBtn: boolean = true;
Expand Down

0 comments on commit 4645553

Please sign in to comment.