diff --git a/Chrono/.junie/memory/errors.md b/Chrono/.junie/memory/errors.md
new file mode 100644
index 0000000..e69de29
diff --git a/Chrono/.junie/memory/feedback.md b/Chrono/.junie/memory/feedback.md
new file mode 100644
index 0000000..e69de29
diff --git a/Chrono/.junie/memory/language.json b/Chrono/.junie/memory/language.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/Chrono/.junie/memory/language.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/Chrono/.junie/memory/memory.version b/Chrono/.junie/memory/memory.version
new file mode 100644
index 0000000..f398a20
--- /dev/null
+++ b/Chrono/.junie/memory/memory.version
@@ -0,0 +1 @@
+3.0
\ No newline at end of file
diff --git a/Chrono/.junie/memory/tasks.md b/Chrono/.junie/memory/tasks.md
new file mode 100644
index 0000000..e69de29
diff --git a/Chrono/Build/Program.cs b/Chrono/Build/Program.cs
index bb2ed78..9f57deb 100644
--- a/Chrono/Build/Program.cs
+++ b/Chrono/Build/Program.cs
@@ -60,7 +60,7 @@ foreach (var file in mdFiles)
ImmortalizeWhen = NullIfNa(StripWikiLinks(yaml.GetValueOrDefault("immortalizeWhen"))),
ImageFile = imageFile,
Artist = yaml.GetValueOrDefault("artist"),
- Rarity = yaml.GetValueOrDefault("rarity"),
+ Rarity = yaml.GetValueOrDefault("rarity")
};
cards.Add(card);
@@ -117,7 +117,7 @@ for (var i = 0; i < cards.Count; i++)
WriteStrProp(writer, "ImmortalizeFrom", c.ImmortalizeFrom, 3);
WriteStrProp(writer, "ImmortalizeWhen", c.ImmortalizeWhen, 3);
WriteStrProp(writer, "ImageFile", c.ImageFile, 3);
-
+
WriteStrProp(writer, "Artist", c.Artist, 3);
WriteStrProp(writer, "Rarity", c.Rarity, 3);
diff --git a/Chrono/Cloud/Cloud.csproj b/Chrono/Cloud/Cloud.csproj
index f8f5963..1a13b97 100644
--- a/Chrono/Cloud/Cloud.csproj
+++ b/Chrono/Cloud/Cloud.csproj
@@ -8,8 +8,8 @@
- Swapping to Development environment will display more detailed information about the error that occurred. + Swapping to Development environment will display more detailed information about the error that + occurred.
The Development environment shouldn't be enabled for deployed applications. It can result in displaying sensitive information from exceptions to end users. - For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development + For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT + environment variable to Development and restarting the app.
@@ -30,7 +32,9 @@ private string? RequestId { get; set; } private bool ShowRequestId => !string.IsNullOrEmpty(RequestId); - protected override void OnInitialized() => + protected override void OnInitialized() + { RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier; + } } \ No newline at end of file diff --git a/Chrono/Cloud/Components/Routes.razor b/Chrono/Cloud/Components/Routes.razor index 33ce55e..4a25349 100644 --- a/Chrono/Cloud/Components/Routes.razor +++ b/Chrono/Cloud/Components/Routes.razor @@ -1,7 +1,9 @@ @using Shared.Pages -