Webatrice: card import wizard (#4397)

This commit is contained in:
Jeremy Letto 2021-10-14 20:42:35 -05:00 committed by GitHub
parent dde0f568d9
commit 36e5a399d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 1479 additions and 35 deletions

View file

@ -11,7 +11,7 @@ import { ScrollToBottomOnChanges, ThreePaneLayout, UserDisplay, VirtualList, Aut
import { RoomsStateMessages, RoomsStateRooms, JoinedRooms, RoomsSelectors } from "store";
import { RouteEnum } from "types";
import Games from "./Games";
import OpenGames from "./OpenGames";
import Messages from "./Messages";
import SayMessage from "./SayMessage";
@ -60,7 +60,7 @@ class Room extends Component<any> {
top={(
<Paper className="room-view__games overflow-scroll">
<Games room={room} />
<OpenGames room={room} />
</Paper>
)}