Skip to content
This repository has been archived by the owner on Oct 16, 2020. It is now read-only.

Commit

Permalink
Change label
Browse files Browse the repository at this point in the history
  • Loading branch information
foriequal0 committed Mar 28, 2020
1 parent 88be395 commit 53d8f10
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/content_script.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ for (const {representative, entries} of groups) {
function createGeneratedSection(hidden: boolean) {
if (hidden) {
return <div>
<p style={{textDecoration: "underline"}} onClick={(e) => toggle(e, false)}>[+] Generated variadic items</p>
<p style={{textDecoration: "underline"}} onClick={(e) => toggle(e, false)}>
[+] Show Generated variadic implementations
</p>
</div>;
} else {
const items: Element[] = [];
Expand All @@ -93,7 +95,9 @@ for (const {representative, entries} of groups) {
}
}
return <div>
<p style={{textDecoration: "underline"}} onClick={(e) => toggle(e, true)}>[-] Generated variadic items</p>
<p style={{textDecoration: "underline"}} onClick={(e) => toggle(e, true)}>
[-] Hide Generated variadic implementations
</p>
<div style={{borderStyle:"dotted"}}>
{items}
</div>
Expand Down

0 comments on commit 53d8f10

Please sign in to comment.