about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Shared/TimelineComponents/TimelineUnknownItem.razor
blob: d8ea7e2f57534f9b686b0009b4b55a0d2079959b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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; }

}