Optional card configurations
Explore the optional configurations for cards. The configurations enhance card functionality and appearance.
Adding tags to the header of cards
Add a tag property to display a tag in the card header to enhance the card appearance.
The following cards show the Publish and Preview tags with assigned colors.
- From the navigation menu, click Card builder.
- On the My cards tab, click the card name for which you want to add a tag.
- Click the Edit source icon.
- Locate the
devConfigurations
properties and add the following code snippet to it.{ "name": "header.previewTagText", "values": [ "Under progress" ], "metaInformation": "widgetOption" }, { "name": "header.previewTagDescription", "values": [ "This card is under progress." ], "metaInformation": "widgetOption" }, { "name": "header.previewTagType", "values": [ "red" ], "metaInformation": "widgetOption" }
Where,- header.previewTagText
- The text that is displayed in the tag.
- header.previewTagDescription
- A description of the tag. The description appears when a user hovers over the tag.
- header.previewTagType
- The color of the tag.
- Click Save.