Proper treatment for groups #4008

5359c76923c3941357c1291c5c8349ccc40734a4

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -2Showing whitespace changes
public/scripts/group-chats.js+2 -2
@@ -715,7 +715,7 @@ export function getGroupBlock(group) {
715715
716 // Display inline tags716 // Display inline tags
717 const tagsElement = template.find('.tags');717 const tagsElement = template.find('.tags');
718 printTagList(tagsElement, { forEntityOrKey: group.id });718 printTagList(tagsElement, { forEntityOrKey: group.id, tagOptions: { isCharacterList: true } });
719719
720 const avatar = getGroupAvatar(group);720 const avatar = getGroupAvatar(group);
721 if (avatar) {721 if (avatar) {
@@ -1482,7 +1482,7 @@ function getGroupCharacterBlock(character) {
14821482
1483 // Display inline tags1483 // Display inline tags
1484 const tagsElement = template.find('.tags');1484 const tagsElement = template.find('.tags');
1485 printTagList(tagsElement, { forEntityOrKey: characters.indexOf(character) });1485 printTagList(tagsElement, { forEntityOrKey: characters.indexOf(character), tagOptions: { isCharacterList: true } });
14861486
1487 if (!openGroupId) {1487 if (!openGroupId) {
1488 template.find('[data-action="speak"]').hide();1488 template.find('[data-action="speak"]').hide();