private getTagIdFromClick()

in src/components/tagsInput/tagsInput.tsx [202:205]


    private getTagIdFromClick(event: SyntheticEvent): string {
        const attrValue = event.currentTarget.getAttribute("data-tag-name");
        return attrValue ? attrValue.trim() : null;
    }