Make category tooltip work on mobile and make it clear after voting

This commit is contained in:
Ajay
2023-07-14 21:04:33 -04:00
parent 5d98208596
commit d074fdec96
2 changed files with 27 additions and 4 deletions

View File

@@ -47,7 +47,11 @@ export class CategoryPill {
this.root = createRoot(this.container);
this.ref = React.createRef();
this.root.render(<CategoryPillComponent ref={this.ref} vote={this.vote} showTextByDefault={!this.onMobileYouTube} />);
this.root.render(<CategoryPillComponent
ref={this.ref}
vote={this.vote}
showTextByDefault={!this.onMobileYouTube}
showTooltipOnClick={this.onMobileYouTube} />);
if (this.onMobileYouTube) {
if (this.mutationObserver) {