Skip to content

Commit

Permalink
Minor clean up (#1488)
Browse files Browse the repository at this point in the history
* removes end of paragraph tag

* makes razor file created from templates neater
  • Loading branch information
oneolddev authored Feb 10, 2024
1 parent 3501dda commit 742fd44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
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*@
}

0 comments on commit 742fd44

Please sign in to comment.