HOME 1 year ago
parent
commit
a93d78eb3e

+ 1 - 2
SimpleWebChat.BlazorWasm/App.razor

@@ -78,7 +78,6 @@
         StateHasChanged();
     }
 
-
     private async Task Connect()
     {
         if (string.IsNullOrEmpty(nickName)) return;
@@ -123,4 +122,4 @@
         message = "";
         StateHasChanged();
     }
-}
+}

+ 1 - 1
SimpleWebChat.BlazorWasm/wwwroot/index.html

@@ -5,7 +5,7 @@
     <meta charset="utf-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
     <link rel="icon" type="image/x-icon" href="favicon.ico">
-    <title>Blazor WASM UI</title>
+    <title>Simple Web Chat</title>
 
     <base href="/" />
 

+ 1 - 0
SimpleWebChat.BlazorWasm/wwwroot/swc.css

@@ -9,6 +9,7 @@
     width: 100%;
     z-index: 1080;
 }
+
     #blazor-error-ui .dismiss {
         cursor: pointer;
         position: absolute;

+ 1 - 2
SimpleWebChat.ConHost/HostProgram.cs

@@ -2,7 +2,6 @@
 using System.IO.Compression;
 using System.Net;
 using System.Net.WebSockets;
-using System.Runtime.CompilerServices;
 using System.Text;
 
 internal static class HostProgram
@@ -138,7 +137,7 @@ internal static class HostProgram
             var timeSpan = DateTime.Now - _lastRequestAccepted;
             var up = DateTime.Now - upTime;
             Console.Title =
-                "SimWebCha"
+                "SimWebChat"
                 + $" UP {up.Days:00}D {up.Hours:00}H {up.Minutes:00}M {up.Seconds:00}S {up.Milliseconds:000}"
                 + $" / "
                 + $" LA {timeSpan.Days:00}D {timeSpan.Hours:00}H {timeSpan.Minutes:00}M {timeSpan.Seconds:00}S {timeSpan.Milliseconds:000}"