Skip to content

Commit

Permalink
Updated room name
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-dietrich committed Nov 19, 2024
1 parent 7754c8f commit a57bc0f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h2>Room Data</h2>
<code x-text="edrys.liveUser.displayName"></code>
</li>
<li>
<b>Current Room:</b> <code x-text="edrys.liveRoom.name"></code>
<b>Current Room:</b> <code x-text="edrys.liveUser.room"></code>
</li>
<li><b>Role:</b> <code x-text="edrys.role"></code></li>
<li>
Expand All @@ -67,24 +67,26 @@ <h2>Room Data</h2>
<li><b>URL:</b> <code x-text="edrys.module.url"></code></li>
<li>
<b>Config:</b>
<code x-text="JSON.stringify(edrys.module.config)"></code>
<code
x-text="JSON.stringify(edrys.module.config, null, 2)"
></code>
</li>
<li x-show="edrys.role == 'student'">
<b>Student Config:</b>
<code
x-text="JSON.stringify(edrys.module.studentConfig)"
x-text="JSON.stringify(edrys.module.studentConfig, null, 2)"
></code>
</li>
<li x-show="edrys.role == 'teacher'">
<b>Teacher Config:</b>
<code
x-text="JSON.stringify(edrys.module.teacherConfig)"
x-text="JSON.stringify(edrys.module.teacherConfig, null, 2)"
></code>
</li>
<li x-show="edrys.role == 'station'">
<b>Station Config:</b>
<code
x-text="JSON.stringify(edrys.module.stationConfig)"
x-text="JSON.stringify(edrys.module.stationConfig, null, 2)"
></code>
</li>
<li>
Expand Down

0 comments on commit a57bc0f

Please sign in to comment.