We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 103a0f7 commit fb0721bCopy full SHA for fb0721b
src/BootstrapBlazor.Server/Components/Samples/Meets.razor.cs
@@ -12,8 +12,7 @@ public partial class Meets : ComponentBase
12
{
13
private MeetOption? _option;
14
private Meet? _meet;
15
- private string _domain = "meet.jit.si";
16
- private string? _roomName = "BootstrapBlazor";
+ private readonly string _domain = "meet.jit.si";
17
18
[Inject, NotNull]
19
private ToastService? ToastService { get; set; }
@@ -27,7 +26,7 @@ protected override void OnInitialized()
27
26
28
_option = new MeetOption
29
30
- RoomName = _roomName,
+ RoomName = "BootstrapBlazor",
31
Width = "100%",
32
Height = 700,
33
ConfigOverwrite = new
0 commit comments