about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/TimelineComponents/TimelineUnknownItem.razor
blob: f78bdc9f919d403dd56340cdb3d4e52c6a859473 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@using MatrixRoomUtils.Core.Extensions
<div>

    <details style="display: inline;">
        <summary>
            <i style="color: red;">
                Unknown event type: <pre style="display: inline;">@Event.Type</pre>
            </i>
        </summary>
        <pre>
           @Event.ToJson()
        </pre>
    </details>
</div>

@code {

    [Parameter]
    public StateEvent Event { get; set; }

}