File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
Web.ProjectTemplates/content
BlazorServerWeb-CSharp/Pages
ComponentsWebAssembly-CSharp/Server/Pages
RazorPagesWeb-CSharp/Pages
StarterWeb-CSharp/Views/Shared
StarterWeb-FSharp/Views/Shared
Web.Spa.ProjectTemplates/content Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 18
18
<h1 class =" text-danger" >Error.</h1 >
19
19
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
20
20
21
- @if (Model ? .ShowRequestId == true )
21
+ @if (Model ? .ShowRequestId ?? false )
22
22
{
23
23
<p >
24
24
<strong >Request ID : </strong > <code >@Model.RequestId </code >
Original file line number Diff line number Diff line change 18
18
<h1 class =" text-danger" >Error.</h1 >
19
19
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
20
20
21
- @if (Model ? .ShowRequestId == true )
21
+ @if (Model ? .ShowRequestId ?? false )
22
22
{
23
23
<p >
24
24
<strong >Request ID : </strong > <code >@Model.RequestId </code >
Original file line number Diff line number Diff line change 7
7
<h1 class =" text-danger" >Error.</h1 >
8
8
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
9
9
10
- @if (Model ? .ShowRequestId == true )
10
+ @if (Model ? .ShowRequestId ?? false )
11
11
{
12
12
<p >
13
13
<strong >Request ID : </strong > <code >@Model.RequestId </code >
Original file line number Diff line number Diff line change 6
6
<h1 class =" text-danger" >Error.</h1 >
7
7
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
8
8
9
- @if (Model ? .ShowRequestId == true )
9
+ @if (Model ? .ShowRequestId ?? false )
10
10
{
11
11
<p >
12
12
<strong >Request ID : </strong > <code >@Model.RequestId </code >
Original file line number Diff line number Diff line change 7
7
<h1 class =" text-danger" >Error.</h1 >
8
8
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
9
9
10
- @if (Model ? .ShowRequestId == true )
10
+ @if (Model ? .ShowRequestId ?? false )
11
11
{
12
12
<p >
13
13
<strong >Request ID : </strong > <code >@Model.RequestId </code >
Original file line number Diff line number Diff line change 7
7
<h1 class =" text-danger" >Error.</h1 >
8
8
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
9
9
10
- @if (Model ? .ShowRequestId == true )
10
+ @if (Model ? .ShowRequestId ?? false )
11
11
{
12
12
<p >
13
13
<strong >Request ID : </strong > <code >@Model.RequestId </code >
Original file line number Diff line number Diff line change 7
7
<h1 class =" text-danger" >Error.</h1 >
8
8
<h2 class =" text-danger" >An error occurred while processing your request.</h2 >
9
9
10
- @if (Model ? .ShowRequestId == true )
10
+ @if (Model ? .ShowRequestId ?? false )
11
11
{
12
12
<p >
13
13
<strong >Request ID : </strong > <code >@Model.RequestId </code >
You can’t perform that action at this time.
0 commit comments