Skip to content

Commit 8468ce9

Browse files
authored
Add missing img alt text in a few spots (#8750)
1 parent 87c9f1a commit 8468ce9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

samples/Templates/Scenarios/FlightDetails.template.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@
9696
{
9797
"type": "Image",
9898
"url": "https://messagecardplayground.azurewebsites.net/assets/smallairplane.png",
99-
"height": "16px"
99+
"height": "16px",
100+
"altText": "Flight to"
100101
}
101102
],
102103
"width": "auto"

source/nodejs/adaptivecards-site/pages/_posts/2020/Community-Call-March.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ On the **Admin Portal Dashboard**, users can see a summary of card management. U
2525

2626
On the **New Template** page, users can create and edit Adaptive Cards. Users can expect to create Adaptive Cards effortlessly since [Adaptive Cards Designer Tool](https://adaptivecards.io/designer/) is nicely embedded into the ACMS Admin Portal.
2727

28-
![](https://developer.microsoft.com/en-us/office/blogs/wp-content/uploads/2020/03/A-screenshot-1024x522.png)
28+
![A screenshot of the ACMS New Template page.](https://developer.microsoft.com/en-us/office/blogs/wp-content/uploads/2020/03/A-screenshot-1024x522.pn)
2929

3030
If you click a card on the Dashboard, users will land in **Template View** page where they can check all the details of the card. They can share and publish cards here too! If users **publish** a card template, it can later be retrieved at "run-time" via the ACMS REST API.
3131

source/nodejs/adaptivecards-site/themes/adaptivecards/layout/designer.ejs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,6 @@
195195
designer.setCard(JSON.parse(cardXhttp.responseText));
196196
}
197197
198-
// TODO: Talk to David: I want to put the sampleData setter here but it was failing
199-
200198
history.replaceState(null, null, "<%- config.root %>designer");
201199
};
202200
@@ -229,6 +227,7 @@
229227
"type": "Image",
230228
"style": "Person",
231229
"url": "${creator.profileImage}",
230+
"altText": "${creator.name}",
232231
"size": "Small"
233232
}
234233
],

0 commit comments

Comments
 (0)