Added name when the components get no results
This commit is contained in:
parent
eccf7ef03a
commit
7c7a28f65f
1 changed files with 13 additions and 3 deletions
|
|
@ -400,9 +400,19 @@ export default function StorePage(): JSX.Element {
|
|||
<div className="flex h-full w-full flex-col">
|
||||
<div className="flex w-full flex-col gap-4">
|
||||
<div className="grid w-full gap-4">
|
||||
You haven't{" "}
|
||||
{selectFilter === "createdbyme" ? "created" : "liked"}{" "}
|
||||
anything yet.
|
||||
{selectFilter != "all" ? (
|
||||
<>
|
||||
You haven't{" "}
|
||||
{selectFilter === "createdbyme" ? "created" : "liked"}{" "}
|
||||
anything with the selected filters yet.
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
There are no{" "}
|
||||
{tabActive == "Flows" ? "Flows" : "Components"} with the
|
||||
selected filters.
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue