📖 Display all the actions entry.
Overview
The activity-log tile type is utilised to display actions related to an Entry.
Object Properties
The table provides a summary of the object properties associated with the activity-log tile type, including their types, mandatory or optional status, and descriptions.
| Property | Type | Requirement | Description |
|---|---|---|---|
type | string | Mandatory | Always set to activity-log. |
title | string | Optional | If false, no title is displayed. If set to a string, it becomes the title of the tile. If omitted, it defaults to Activity-log. |
hideBackground | boolean | Optional | If true, the tile's background is hidden. Useful when used within a tab group. |
Sample Configuration
- Minimal Configuration
Here is a sample configuration for incorporation of the activity-log tile type with minimal configuration for an Entry Layouts:
{
"type": "activity-log"
}
- Inside a tab with no background
In this sample configuration, we assumed it is placed inside the tabs tile. It displays the Activity Log without a white tile background. The heading isn't shown because we are using the tab as the heading.
{
"type": "tab",
"title": "Emails",
"content": [
{
"type": "activity-log",
"title": false,
"hideBackground": true
}
]
}📌 Need Help?
