about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/EditablePre.razor
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-01-24 02:31:56 +0100
committerRory& <root@rory.gay>2024-01-24 17:05:25 +0100
commit03313562d21d5db9bf6a14ebbeab80e06c883d3a (patch)
treee000546a2ee8e6a886a7ed9fd01ad674178fb7cb /MatrixRoomUtils.Web/Shared/EditablePre.razor
parentMake RMU installable (diff)
downloadMatrixUtils-03313562d21d5db9bf6a14ebbeab80e06c883d3a.tar.xz
MRU->RMU, fixes, cleanup
Diffstat (limited to 'MatrixRoomUtils.Web/Shared/EditablePre.razor')
-rw-r--r--MatrixRoomUtils.Web/Shared/EditablePre.razor19
1 files changed, 0 insertions, 19 deletions
diff --git a/MatrixRoomUtils.Web/Shared/EditablePre.razor b/MatrixRoomUtils.Web/Shared/EditablePre.razor
deleted file mode 100644
index acb477c..0000000
--- a/MatrixRoomUtils.Web/Shared/EditablePre.razor
+++ /dev/null
@@ -1,19 +0,0 @@
-@inherits InputBase<string>
-<pre id="@Id" class="@CssClass" @onkeyup="Callback" contenteditable="true">@CurrentValue</pre>
-
-@code {
-
-    protected override bool TryParseValueFromString(string? value, out string result, out string? validationErrorMessage) {
-        result = value;
-        validationErrorMessage = null;
-        return true;
-    }
-
-    public object Id { get; set; }
-
-    private Task Callback() {
-        Console.WriteLine("beep");
-        return Task.CompletedTask;
-    }
-
-}
\ No newline at end of file