@ -2,7 +2,7 @@
````json
//[doc-params]
{
"UI": ["MVC","Blazor","NG"],
"UI": ["MVC","Blazor","BlazorServer","NG"],
"DB": ["EF","Mongo"]
}
````
@ -1078,7 +1078,7 @@ That's all. Just run the application and try to create or edit an author.
{{end}}
{{if UI == "Blazor"}}
{{if UI == "Blazor" || UI == "BlazorServer"}}
### The Book List
@ -531,7 +531,7 @@ Now you can see the final result on your browser:

{{else if UI == "Blazor"}}
{{else if UI == "Blazor" || UI == "BlazorServer"}}
## Create a Books Page
@ -1158,7 +1158,7 @@ Clicking the "Delete" action calls the `delete` method which then shows a confir
## Creating a New Book
@ -832,7 +832,7 @@ That's all! This is a fully working CRUD page, you can create, edit and delete a
## The Author Management Page