Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This page tracks major changes included in any update starting with version 4.0.
- Support for strict CSP (dynamic inline styles removed) ([#634](https://github.com/MiniProfiler/dotnet/pull/634) - thanks [rwasef1830](https://github.com/rwasef1830))
- **Fixes/Changes**:
- Upgraded MongoDB driver, allowing automatic index creation and profiler expiration ([#613](https://github.com/MiniProfiler/dotnet/pull/613) - thanks [IanKemp](https://github.com/IanKemp))
- Fixed [#652](https://github.com/MiniProfiler/dotnet/issues/652): Respect `PopupDecimalPlaces` in all cases ([#655](https://github.com/MiniProfiler/dotnet/pull/655))

#### Version 4.3.8
- **New**:
Expand Down
4 changes: 4 additions & 0 deletions src/MiniProfiler.Shared/Internal/Render.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ public static string Includes(
sb.Append(options.ColorScheme.ToString());
sb.Append('"');

sb.Append("\" data-decimal-places=\"");
sb.Append(options.PopupDecimalPlaces.ToString());
sb.Append('"');

if (isAuthorized)
{
sb.Append(" data-authorized=\"true\"");
Expand Down