Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor clean up #1488

Merged
merged 2 commits into from
Feb 10, 2024
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
8 changes: 4 additions & 4 deletions src/Templates/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
> **IMPORTANT!!**
> Just as with the standard Blazor Web App template, Blazor will use SSR by default. If you want to have interactive components, make sure you add a rendermode to the app, page or component!</p>
> Just as with the standard Blazor Web App template, Blazor will use SSR by default. If you want to have interactive components, make sure you add a rendermode to the app, page or component!

## Installation
Install the templates by running the command:
Expand Down Expand Up @@ -27,6 +27,6 @@ dotnet new uninstall Microsoft.FluentUI.AspNetCore.Templates
```

## Support
The Microsoft Fluent UI Blazor library is an open source project and is **not** an official part of ASP.NET Core, which means itοΏ½s **not** officially
supported and isnοΏ½t committed to ship updates as part of any official .NET updates. It is built and maintained by Microsoft employees (**and** other contributors)
and offers support, like most other open source projects, on a best effort base through the GitHub repository **only**.
The Microsoft Fluent UI Blazor library is an open source project and is **not** an official part of ASP.NET Core, which means it’s **not** officially
supported and isn’t committed to ship updates as part of any official .NET updates. It is built and maintained by Microsoft employees (**and** other contributors)
and offers support, like most other open source projects, on a best effort base through the GitHub repository **only**.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ο»Ώ@inherits LayoutComponentBase

@*#if (SampleContent) -->
<FluentLayout>
<FluentHeader>
Expand All @@ -25,7 +26,6 @@
<div class="content">
@Body
</div>

##endif*@
@*#if (UseServer || UseWebAssembly) -->

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ο»Ώ@*#if (UseServer && !InteractiveAtRoot) -->
@rendermode InteractiveServer
##endif*@

##endif*@
@*#if (IndividualLocalAuth)
@implements IDisposable

Expand Down Expand Up @@ -41,7 +41,6 @@

@code {
private bool expanded = true;

@*#if (IndividualLocalAuth)
private string? currentUrl;

Expand All @@ -63,4 +62,3 @@
}
##endif*@
}