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
4 changes: 2 additions & 2 deletions examples/Demo/Shared/Pages/Dialog/DialogPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@
For the Dialogs to work properly, the <code>&lt;FluentDialogProvider/&gt;</code> needs interactivity! <p>
<strong>
For the Dialogs to work properly, the <code>&lt;FluentDialogProvider/&gt;</code> needs interactivity! If you are using "per page" interactivity, make sure to add a <code>@@rendermode</code> to
either the provider itself of the component the provider is placed in.
either the provider itself or the component the provider is placed in.
</strong>
</p>Be sure to add a <code>@@rendermode</code> to
either the provider itself of the component the provider is placed in.
either the provider itself or the component the provider is placed in.
</strong>
</p>
<CodeSnippet>
Expand Down
6 changes: 3 additions & 3 deletions examples/Demo/Shared/Pages/MessageBar/MessageBarPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<strong>IMPORTANT!!</strong>
<p>
MessageBars are rendered by the <code>&lt;FluentMessageBarProvider /&gt;</code>. This component needs to be added to the layout of your application/site.
For a message bar that needs to be shown at the top of the screen, you typically do this in the <code>MainLayout.razor</code> file at the location in
For a message bar that needs to be shown at the top of the screen, you typically do this in the <code>MainLayout.razor</code> file at the location in
the HTML structure where you want the message bars to appear of the <code>&lt;main&gt;</code> section like this:
</p>
<p>
<strong>
For the MessageBars to work properly, the <code>&lt;FluentMessageBarProvider/&gt;</code> needs interactivity! If you are using "per page" interactivity, make sure to add a <code>@@rendermode</code> to
either the provider itself of the component the provider is placed in.
either the provider itself or the component the provider is placed in.
</strong>
</p>

Expand Down Expand Up @@ -61,7 +61,7 @@

<DemoSection Title="Simple messages" Component="typeof(MessageBarSimple)">
<p>
This example show the different intents that can be shown in a MessageBar.
This example show the different intents that can be shown in a MessageBar.
This example does <b>not</b> use the <code>MessageBarService</code>.
</p>
</DemoSection>
Expand Down
2 changes: 1 addition & 1 deletion examples/Demo/Shared/Pages/MessageServicePage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<p>
For the <code>&lt;FluentMessageBarProvider/&gt;</code> to work porperly, it needs interactivity! If you are using "per page" interactivity or ASP.NET Core 8
or above with <strong>Server Side Rendering</strong> , make sure to add a <code>@@rendermode</code> to
either the provider itself of the component the provider is placed in.
either the provider itself or the component the provider is placed in.
</p>
</blockquote>

Expand Down
2 changes: 1 addition & 1 deletion examples/Demo/Shared/Pages/Toast/ToastPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<p>
<strong>
For the Toasts to work properly, the <code>&lt;FluentToastProvider/&gt;</code> needs interactivity! If you are using "per page" interactivity, make sure to add a <code>@@rendermode</code> to
either the provider itself of the component the provider is placed in.
either the provider itself or the component the provider is placed in.
</strong>
</p>
<CodeSnippet>
Expand Down
2 changes: 1 addition & 1 deletion examples/Demo/Shared/Pages/Tooltip/TooltipPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and will be written at the end of the HTML page to support the different z-index
<p>
<strong>
For the <code>&lt;FluentTooltipProvider/&gt;</code> to work properly, it needs interactivity! If you are using "per page" interactivity, make sure to add a <code>@@rendermode</code> to
either the provider itself of the component the provider is placed in.
either the provider itself or the component the provider is placed in.
</strong>
</p>
<br />
Expand Down