-
Notifications
You must be signed in to change notification settings - Fork 76
Document Tag removal confirmation and expandable Tags tile on Contact detail page #779
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 7.2
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,6 +63,17 @@ | |
|
|
||
| .. vale off | ||
| Viewing and removing Tags on a Contact | ||
| ************************************** | ||
|
|
||
| .. vale on | ||
| A Contact's Tags appear on the Contact's detail page in a dedicated Tags tile. If a Contact has 8 or fewer Tags, the tile shows all of them. If a Contact has more than 8, the tile shows the first 8 and becomes expandable - use the control on the tile to view the remaining Tags. | ||
|
Check warning on line 71 in docs/contacts/tags.rst
|
||
|
|
||
| To remove a Tag from the Contact's detail page, click the **x** icon on the Tag. Mautic displays a confirmation dialog asking 'Are you sure you want to remove this tag from the contact?'. Click **Confirm** to remove the Tag, or **Cancel** to keep it. This confirmation step prevents you from accidentally removing a Tag with a single click. | ||
|
Check warning on line 73 in docs/contacts/tags.rst
|
||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The exact confirmation message 'Are you sure you want to remove this tag from the contact?' comes from the new Source: mautic/mautic#15845 |
||
|
|
||
| .. vale off | ||
| Using Tags in Campaigns | ||
| *********************** | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 8-Tag threshold and expandable tile behavior come from
lead.html.twig, wheremaxVisibleTagsCount = 8selects atile--basefor 8 or fewer Tags and atile--expandable-interactive(first 8 above the fold, remainder below) whentagCount > maxVisibleTagsCount.Source: mautic/mautic#15845