Added region role to avoid announcing the element as a list (#2324)
This commit is contained in:
Родитель
1a7522945e
Коммит
114ca4fa91
|
@ -50,7 +50,7 @@ export class RecentBotsList extends Component<RecentBotsListProps, Record<string
|
||||||
return (
|
return (
|
||||||
<div className={styles.section}>
|
<div className={styles.section}>
|
||||||
<SmallHeader className={styles.marginFix}>My Bots</SmallHeader>
|
<SmallHeader className={styles.marginFix}>My Bots</SmallHeader>
|
||||||
<ul className={`${styles.recentBotsList} ${styles.well}`}>
|
<ul className={`${styles.recentBotsList} ${styles.well}`} role="region">
|
||||||
{this.props.recentBots && this.props.recentBots.length ? (
|
{this.props.recentBots && this.props.recentBots.length ? (
|
||||||
this.props.recentBots.slice(0, 10).map(
|
this.props.recentBots.slice(0, 10).map(
|
||||||
(bot, index) =>
|
(bot, index) =>
|
||||||
|
|
Загрузка…
Ссылка в новой задаче