Ver código fonte

Updated version to 1.3.1

Tim Jones 2 meses atrás
pai
commit
74d81b6e60

+ 1 - 1
RackPeek.Domain/RpkConstants.cs

@@ -1,7 +1,7 @@
 namespace RackPeek.Domain;
 
 public static class RpkConstants {
-    public const string Version = "v1.3.0";
+    public const string Version = "v1.3.1";
 
     public static bool HasGitServices = false;
 }

+ 1 - 1
RackPeek/RackPeek.csproj

@@ -5,7 +5,7 @@
         <TargetFramework>net10.0</TargetFramework>
         <ImplicitUsings>enable</ImplicitUsings>
         <Nullable>enable</Nullable>
-        <AssemblyVersion>1.3.0</AssemblyVersion>
+        <AssemblyVersion>1.3.1</AssemblyVersion>
     </PropertyGroup>
 
     <ItemGroup>

+ 9 - 2
Shared.Rcl/AccessPoints/AccessPointCardComponent.razor

@@ -93,8 +93,15 @@
                 <input type="number"
                        step="0.1"
                        data-testid="accesspoint-speed-input"
-                       class="w-full px-3 py-2 rounded-md bg-zinc-800 text-zinc-100 border border-zinc-600"
-                       @bind="_edit.Speed"/>
+                        class="w-full px-3 py-2 rounded-md
+                            bg-zinc-800 text-zinc-100
+                            border border-zinc-600
+                            placeholder-zinc-500
+                            focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500
+                            hover:border-zinc-400
+                            transition-colors duration-150
+                            cursor-text"
+                                                  @bind="_edit.Speed"/>
             }
             else if (AccessPoint.Speed is not null)
             {