add images for docs

This commit is contained in:
Sharon Kennedy 2020-03-21 22:50:21 -04:00
parent 792a994ef5
commit c971b3da47
15 changed files with 2 additions and 2 deletions

BIN
docs/accept-invitation.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

BIN
docs/bot-command.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

BIN
docs/community-page.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

BIN
docs/confirm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
docs/emoji-menu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

BIN
docs/forget-room.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
docs/invitation.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
docs/leave-room.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
docs/login-screen.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 KiB

BIN
docs/mute-message.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

BIN
docs/riot-login.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

BIN
docs/room-name.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

BIN
docs/unverified-session.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -396,8 +396,8 @@ class ChatBox extends React.Component {
});
this.state.client.on("RoomMember.typing", (event, member) => {
if (member.typing && event.getRoomId() === this.state.roomId) {
this.setState({ typingStatus: `${member.name} is typing...`})
if (member.typing && member.roomId === this.state.roomId) {
this.setState({ typingStatus: `${member.name} is typing...` })
}
else {
this.setState({ typingStatus: null })