summaryrefslogtreecommitdiff
path: root/client-web/source/user/mod.ts
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2023-06-24 22:22:33 +0200
committertpart <tpart120@proton.me>2023-06-24 22:22:33 +0200
commit466aee544b95a866305731df4642927583d4eb90 (patch)
treee150ec304e65ed8d90cdb5b8e1fdce85df41137c /client-web/source/user/mod.ts
parentea501df4775cb2686ef5f2e2bbee1d5c69d00941 (diff)
parente3d056a8807d52f95b7df9537ce931925b00d98f (diff)
downloadkeks-meet-466aee544b95a866305731df4642927583d4eb90.tar
keks-meet-466aee544b95a866305731df4642927583d4eb90.tar.bz2
keks-meet-466aee544b95a866305731df4642927583d4eb90.tar.zst
Merge branch 'master' of codeberg.org:metamuffin/keks-meet
Diffstat (limited to 'client-web/source/user/mod.ts')
-rw-r--r--client-web/source/user/mod.ts3
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