Updated to latest framework message username

addresses conflicts
This commit is contained in:
Cody 2020-06-05 17:57:25 -07:00 committed by GitHub
parent f854b948ce
commit af1aab5b8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,18 +11,23 @@
<td>
<label class="control-label">@title: </label>
</td>
@if (title == "From")
{
<td>
<input class="form-control" @bind="@username" readonly />
</td>
}
@if (title == "To")
{
<td>
<input class="form-control" @bind="@username" />
</td>
}
</tr>
<tr>
<td>
<label class="control-label">Subject: </label>
</td>
<td>
<input class="form-control" @bind="@subject" />
</td>
</tr>
@if (title == "From")
{
<td>
@ -34,8 +39,8 @@
<td>
<input class="form-control" @bind="@subject" />
</td>
</tr>}
}
</tr>
@if (title == "From")
{
<tr>
@ -71,6 +76,7 @@
}
</table>
@if (reply != string.Empty)
{
<button type="button" class="btn btn-primary" @onclick="Send">Send</button> }
@ -207,5 +213,5 @@
AddModuleMessage("Error Adding Notification", MessageType.Error);
}
}
}