about summary refs log tree commit diff
path: root/MatrixUtils.Web/Shared/EditablePre.razor
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixUtils.Web/Shared/EditablePre.razor')
-rw-r--r--MatrixUtils.Web/Shared/EditablePre.razor2
1 files changed, 1 insertions, 1 deletions
diff --git a/MatrixUtils.Web/Shared/EditablePre.razor b/MatrixUtils.Web/Shared/EditablePre.razor
index acb477c..acb39c9 100644
--- a/MatrixUtils.Web/Shared/EditablePre.razor
+++ b/MatrixUtils.Web/Shared/EditablePre.razor
@@ -1,4 +1,4 @@
-@inherits InputBase<string>
+@inherits Microsoft.AspNetCore.Components.Forms.InputBase<string>
 <pre id="@Id" class="@CssClass" @onkeyup="Callback" contenteditable="true">@CurrentValue</pre>
 
 @code {