You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description
Added progress percent to top of page. I want to iterate on this feature
with some of the following possible changes:
- Perhaps add page number field to Tooling side for the following
reasons:
- More intuitive to enter page number to navigate to it
- Easier to read/remember than a percentage
- More accurate
- Add ability to navigate to percent/page number
- Add same functionality to tooltip as the following issue suggests
FixesIntelliTect-dev/EssentialCSharp.Tooling#442
### Ensure that your pull request has followed all the steps below:
- [x] Code compilation
- [x] Created tests which fail without the change (if possible)
- [x] All tests passing
- [x] Extended the README / documentation, if necessary
---------
Co-authored-by: Benjamin Michaelis <[email protected]>
Copy file name to clipboardExpand all lines: EssentialCSharp.Web/Services/SiteMappingService.cs
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
usingEssentialCSharp.Web.Models;
1
+
usingSystem.Globalization;
2
2
3
3
namespaceEssentialCSharp.Web.Services;
4
4
@@ -12,7 +12,6 @@ public SiteMappingService(IWebHostEnvironment webHostEnvironment)
12
12
List<SiteMapping>?siteMappings=System.Text.Json.JsonSerializer.Deserialize<List<SiteMapping>>(File.OpenRead(path))??thrownewInvalidOperationException("No table of contents found");
0 commit comments