Skip to content

Commit a3c281d

Browse files
committed
fix: Add missing Input annotation to inputMode
1 parent 151c58e commit a3c281d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/stream-chat-angular/src/lib/message-input/message-input.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class MessageInputComponent
8585
/**
8686
* In `desktop` mode the `Enter` key will trigger message sending, in `mobile` mode the `Enter` key will insert a new line to the message input. If no value is provided, it is set from the [`MessageInputConfigService`](../services/MessageInputConfigService.mdx).
8787
*/
88-
inputMode: 'desktop' | 'mobile';
88+
@Input() inputMode: 'desktop' | 'mobile';
8989
/**
9090
* Emits when a message was successfuly sent or updated
9191
*/

0 commit comments

Comments
 (0)