Skip to content

Commit d65326c

Browse files
committed
docs: add missing docs code comments to message blocked component
1 parent 0f07a0b commit d65326c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ import { StreamMessage } from '../types';
1111
changeDetection: ChangeDetectionStrategy.OnPush,
1212
})
1313
export class MessageBlockedComponent {
14+
/**
15+
* The message that has been blocked.
16+
*/
1417
@Input() message: StreamMessage | undefined;
18+
/**
19+
* Whether the message is the current user's own message.
20+
*/
1521
@Input() isMyMessage = false;
1622
}

0 commit comments

Comments
 (0)