1
0
Fork 0

Fix "show more" appearing below the faux padding

This commit is contained in:
Lim Chee Aun 2022-12-19 10:04:50 +08:00
parent 0a4898059b
commit 141f4a94dc

View file

@ -255,8 +255,8 @@ function StatusPage({ id }) {
</li>
);
})}
</ul>
{showMore > 0 && (
<li>
<button
type="button"
class="plain block"
@ -267,7 +267,9 @@ function StatusPage({ id }) {
Show more&hellip;{' '}
<span class="tag">{showMore > 40 ? '40+' : showMore}</span>
</button>
</li>
)}
</ul>
</div>
</div>
);