Add type="button" to all buttons and prevent display of Installer if already installed

This commit is contained in:
Shaun Walker
2019-08-01 12:53:02 -04:00
parent c9783c3b2f
commit 9fbc71b531
10 changed files with 123 additions and 114 deletions

View File

@ -2,7 +2,7 @@
@inherits ModuleBase
Current count: @currentCount
<br />
<button class="btn btn-primary" @onclick="@IncrementCount">Click me</button>
<button type="button" class="btn btn-primary" @onclick="@IncrementCount">Click me</button>
<br /><br />
@code {