You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-06 10:22:45 +03:00
Apply strictNullChecks
to src/components/views/elements/*
(#10462
* Apply `strictNullChecks` to `src/components/views/elements/*` * Iterate * Iterate * Iterate * Apply `strictNullChecks` to `src/components/views/elements/*` * Iterate * Iterate * Iterate * Update snapshot
This commit is contained in:
committed by
GitHub
parent
cefd94859c
commit
a47b3eb0ee
@@ -118,7 +118,10 @@ describe("EventListSummary", function () {
|
||||
...mockClientMethodsUser(),
|
||||
});
|
||||
|
||||
const defaultProps: ComponentProps<typeof EventListSummary> = {
|
||||
const defaultProps: Omit<
|
||||
ComponentProps<typeof EventListSummary>,
|
||||
"summaryLength" | "threshold" | "avatarsMaxLength"
|
||||
> = {
|
||||
layout: Layout.Bubble,
|
||||
events: [],
|
||||
children: [],
|
||||
|
@@ -7,8 +7,8 @@ exports[`<FilterDropdown /> renders dropdown options in menu 1`] = `
|
||||
role="listbox"
|
||||
>
|
||||
<div
|
||||
aria-selected="false"
|
||||
class="mx_Dropdown_option"
|
||||
aria-selected="true"
|
||||
class="mx_Dropdown_option mx_Dropdown_option_highlight"
|
||||
id="test__one"
|
||||
role="option"
|
||||
>
|
||||
|
Reference in New Issue
Block a user