We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c56cf9 commit e52a72dCopy full SHA for e52a72d
1 file changed
packages/component/src/Attachment/TypingActivity.js
@@ -7,7 +7,7 @@ import TypingAnimation from './Assets/TypingAnimation';
7
8
const TypingActivity = ({ language, styleSet }) => (
9
<div className={styleSet.typingActivity}>
10
- <TypingAnimation ariaLabel={localize('TypingIndicator', language)} />
+ <TypingAnimation aria-label={localize('TypingIndicator', language)} />
11
</div>
12
);
13
@@ -18,4 +18,4 @@ TypingActivity.propTypes = {
18
}).isRequired
19
};
20
21
-export default connectToWebChat(({ styleSet }) => ({ styleSet }))(TypingActivity);
+export default connectToWebChat(({ language, styleSet }) => ({ language, styleSet }))(TypingActivity);
0 commit comments