We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c9c49 commit 94bf797Copy full SHA for 94bf797
src/AstroPanda.Blazor.Toolkit/Components/VersionLabel.razor
@@ -60,10 +60,10 @@
60
if (versionAttr is not null)
61
{
62
var version = versionAttr.InformationalVersion;
63
-
64
- if (string.IsNullOrWhiteSpace(version))
65
- version = "0.0.0";
66
+
+ if (string.IsNullOrWhiteSpace(version))
+ version = "0.0.0";
67
_version = version.Split('+').FirstOrDefault() ?? "0.0.0";
68
}
69
@@ -72,6 +72,6 @@
72
break;
73
74
75
- base.OnInitialized();
+ await base.OnInitializedAsync();
76
77
0 commit comments