Skip to content

Commit

Permalink
Add missing img alt text in a few spots (#8750)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcam206 authored Nov 14, 2023
1 parent 87c9f1a commit 8468ce9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion samples/Templates/Scenarios/FlightDetails.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@
{
"type": "Image",
"url": "https://messagecardplayground.azurewebsites.net/assets/smallairplane.png",
"height": "16px"
"height": "16px",
"altText": "Flight to"
}
],
"width": "auto"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ On the **Admin Portal Dashboard**, users can see a summary of card management. U

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.

![](https://developer.microsoft.com/en-us/office/blogs/wp-content/uploads/2020/03/A-screenshot-1024x522.png)
![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)

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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,6 @@
designer.setCard(JSON.parse(cardXhttp.responseText));
}
// TODO: Talk to David: I want to put the sampleData setter here but it was failing
history.replaceState(null, null, "<%- config.root %>designer");
};
Expand Down Expand Up @@ -229,6 +227,7 @@
"type": "Image",
"style": "Person",
"url": "${creator.profileImage}",
"altText": "${creator.name}",
"size": "Small"
}
],
Expand Down

0 comments on commit 8468ce9

Please sign in to comment.