mirror of
https://github.com/flarum/core.git
synced 2025-08-04 23:47:32 +02:00
fix(a11y): present post streams as feeds, setting busy when loading new pages (#3522)
This commit is contained in:
@@ -104,7 +104,11 @@ export default class PostStream extends Component {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return <div className="PostStream">{items}</div>;
|
return (
|
||||||
|
<div className="PostStream" role="feed" aria-live="off" aria-busy={this.stream.pagesLoading ? 'true' : 'false'}>
|
||||||
|
{items}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
onupdate(vnode) {
|
onupdate(vnode) {
|
||||||
|
Reference in New Issue
Block a user