Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d0a8bbf
Fix bug where 'in this call' text is incorrectly wrapped inside h2 tag
carocao-msft Nov 18, 2025
486a107
add missing style
carocao-msft Nov 18, 2025
fdf0c41
Update packages/react-composites CallWithChatComposite browser test s…
github-actions[bot] Nov 18, 2025
e15536d
Update packages/react-composites ChatComposite browser test snapshots
github-actions[bot] Nov 18, 2025
d264700
Merge branch 'carocao/HTMLTags' of https://github.com/Azure/communica…
github-actions[bot] Nov 18, 2025
2938650
Update packages/react-composites CallWithChatComposite browser test s…
github-actions[bot] Nov 18, 2025
2901925
Merge branch 'carocao/HTMLTags' of https://github.com/Azure/communica…
github-actions[bot] Nov 18, 2025
c58a60d
Update embed html bundle snapshots
github-actions[bot] Nov 18, 2025
853c4d8
Merge branch 'carocao/HTMLTags' of https://github.com/Azure/communica…
github-actions[bot] Nov 18, 2025
3af21bc
Update packages/react-composites CallComposite browser test snapshots
github-actions[bot] Nov 18, 2025
7186d84
Merge branch 'carocao/HTMLTags' of https://github.com/Azure/communica…
github-actions[bot] Nov 18, 2025
62e3cca
Update packages/react-composites CallComposite browser test snapshots
github-actions[bot] Nov 18, 2025
35e2f3a
Merge branch 'carocao/HTMLTags' of https://github.com/Azure/communica…
github-actions[bot] Nov 18, 2025
3f59a3f
Merge branch 'main' into carocao/HTMLTags
carocao-msft Nov 20, 2025
b205641
Update so styling is not changed
carocao-msft Nov 21, 2025
3bc7031
Merge branch 'main' into carocao/HTMLTags
carocao-msft Nov 21, 2025
2619d97
Revert "Update packages/react-composites CallWithChatComposite browse…
carocao-msft Nov 21, 2025
722e3cf
Revert "Update embed html bundle snapshots"
carocao-msft Nov 21, 2025
2ed4a05
Revert "Update packages/react-composites CallComposite browser test s…
carocao-msft Nov 21, 2025
53fd5f9
Revert "Update packages/react-composites CallComposite browser test s…
carocao-msft Nov 21, 2025
d5179ad
revert snapshots
carocao-msft Nov 21, 2025
fd10eb3
Merge branch 'main' into carocao/HTMLTags
carocao-msft Nov 21, 2025
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "patch",
"area": "fix",
"workstream": "Participant container",
"comment": "Fix bug where 'in this call' text is incorrectly wrapped inside h2 tag",
"packageName": "@azure/communication-react",
"email": "96077406+carocao-msft@users.noreply.github.com",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,10 @@ export const ParticipantListWithHeading = (props: {
const subheadingStyleThemed = useMemo(
() => ({
root: {
h2: {
color: theme.palette.neutralSecondary,
margin: props.isMobile ? '0.5rem 1rem' : '0.5rem',
fontSize: theme.fonts.smallPlus.fontSize,
fontWeight: 'normal'
}
color: theme.palette.neutralSecondary,
margin: props.isMobile ? '0.5rem 1rem' : '0.5rem',
fontSize: theme.fonts.smallPlus.fontSize,
fontWeight: 'normal'
}
}),
[theme.palette.neutralSecondary, theme.fonts.smallPlus.fontSize, props.isMobile]
Expand All @@ -86,12 +84,10 @@ export const ParticipantListWithHeading = (props: {
<Stack className={participantListStack}>
<Stack horizontal horizontalAlign="space-between" verticalAlign="center">
<Stack.Item grow styles={subheadingStyleThemed} aria-label={title} id={subheadingUniqueId}>
<h2>
{paneTitleTrampoline(
title ?? '',
/* @conditional-compile-remove(total-participant-count) */ totalParticipantCount
)}
</h2>
{paneTitleTrampoline(
title ?? '',
/* @conditional-compile-remove(total-participant-count) */ totalParticipantCount
)}
</Stack.Item>
{(onClickHeadingMoreButton ||
(headingMoreButtonMenuProps?.items && headingMoreButtonMenuProps.items.length > 0)) && (
Expand Down
Loading