Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RecentList.web.tsx #15090

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions react/features/recent-list/components/RecentList.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,14 @@

return (
<MeetingsList
disabled = { Boolean(disabled) }
hideURL = { true }
listEmptyComponent = { this._getRenderListEmptyComponent() }
meetings = { recentList }
onItemDelete = { this._onItemDelete }
onPress = { this._onPress } />
accessibilityRole = "list"

Check failure on line 80 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12

Check failure on line 80 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Unexpected usage of doublequote
disabled = { Boolean(disabled) }

Check failure on line 81 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12
hideURL = { true }

Check failure on line 82 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12
listEmptyComponent = { this._getRenderListEmptyComponent() }

Check failure on line 83 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12
meetings = { recentList }

Check failure on line 84 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12
onItemDelete = { this._onItemDelete }

Check failure on line 85 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12
onPress = { this._onPress }

Check failure on line 86 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

Expected indentation of 16 spaces but found 12
/>

Check failure on line 87 in react/features/recent-list/components/RecentList.web.tsx

View workflow job for this annotation

GitHub Actions / Lint

The closing bracket must be placed after the last prop{{details}}
);
}
}
Expand Down
Loading