mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
Removed show more button
This commit is contained in:
parent
bd08f01b8c
commit
3369e92627
1 changed files with 8 additions and 7 deletions
|
@ -251,14 +251,15 @@ function PostListItem({post, selectedResult, setSelectedResult}) {
|
|||
}
|
||||
|
||||
function ShowMoreButton() {
|
||||
return (
|
||||
<button
|
||||
className='w-full my-3 p-[1rem] border border-neutral-200 hover:border-neutral-300 text-neutral-800 hover:text-black font-semibold rounded transition duration-150 ease hover:ease'
|
||||
return null;
|
||||
// return (
|
||||
// <button
|
||||
// className='w-full my-3 p-[1rem] border border-neutral-200 hover:border-neutral-300 text-neutral-800 hover:text-black font-semibold rounded transition duration-150 ease hover:ease'
|
||||
|
||||
>
|
||||
Show more results
|
||||
</button>
|
||||
);
|
||||
// >
|
||||
// Show more results
|
||||
// </button>
|
||||
// );
|
||||
}
|
||||
|
||||
function PostResults({posts, selectedResult, setSelectedResult}) {
|
||||
|
|
Loading…
Add table
Reference in a new issue