Skip to content

Commit 37af183

Browse files
author
HugoFara
committed
fix(tags): correct element ID for text tags initialization
Change the UL element ID from 'text_tag_map' to 'texttags' to match the ID expected by the Tagify initialization in JavaScript.
1 parent 0b48b78 commit 37af183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Modules/Tags/Application/TagsFacade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ public static function getWordTagsHtml(int $wordId): string
554554
*/
555555
public static function getTextTagsHtml(int $textId): string
556556
{
557-
$html = '<ul id="text_tag_map" class="respinput">';
557+
$html = '<ul id="texttags" class="respinput">';
558558

559559
if ($textId > 0) {
560560
$tagNames = self::getTextAssociation()->getTagTextsForItem($textId);

0 commit comments

Comments
 (0)