diff options
Diffstat (limited to 'client-web/source/user/mod.ts')
-rw-r--r-- | client-web/source/user/mod.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client-web/source/user/mod.ts b/client-web/source/user/mod.ts index e83c2e6..6bd177a 100644 --- a/client-web/source/user/mod.ts +++ b/client-web/source/user/mod.ts @@ -6,7 +6,6 @@ /// <reference lib="dom" /> import { ediv, epre, espan } from "../helper.ts"; -import { ROOM_CONTAINER } from "../index.ts"; import { Room } from "../room.ts"; export class User { @@ -25,6 +24,6 @@ export class User { this.name_el.classList.add("name") info_el.append(this.name_el, this.stats_el) this.el.append(info_el) - ROOM_CONTAINER.append(this.el) + room.element.append(this.el) } }
\ No newline at end of file |