Skip to content
Open
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
5 changes: 4 additions & 1 deletion src/MiniProfiler.Shared/Internal/MiniProfilerBaseOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,10 @@ public class MiniProfilerBaseOptions

/// <summary>
/// Dictates on which side of the page the profiler popup button is displayed; defaults to left.
/// For a per-page override you can use .RenderIncludes(position: RenderPosition.Left/Right)
/// For a per-page override you can use .RenderIncludes(position: RenderPosition.Left/Right).
/// In ASP.NET Core this setting is applied when rendering the <c>&lt;mini-profiler /&gt;</c> tag helper
/// (or an equivalent <c>RenderIncludes</c> call) in the layout; configuring it in
/// <c>AddMiniProfiler</c> alone does not render the UI.
/// </summary>
public RenderPosition PopupRenderPosition { get; set; } = RenderPosition.Left;

Expand Down