Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/components/discover/EditorialShelf.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
<div class="ed-shelf__head">
<slot name="header">
<div class="ed-shelf__titles">
<h2 class="ed-shelf__title">{{ title }}</h2>
<div class="ed-shelf__title-row">
<h2 class="ed-shelf__title">{{ title }}</h2>
<slot name="title-append"></slot>
</div>
Comment thread
stvncode marked this conversation as resolved.
<span v-if="subtitle" class="ed-shelf__subtitle">{{ subtitle }}</span>
</div>
</slot>
Expand Down
2 changes: 1 addition & 1 deletion tests/composables/useGuestSearch.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe("useGuestSearch", () => {
});

it("performs search with track-only filter", async () => {
mockSearch.mockResolvedValueOnce({
mockSearch.mockResolvedValue({
tracks: [{ type: "track", id: "t1" }],
artists: [{ type: "artist", id: "a1" }],
});
Comment thread
stvncode marked this conversation as resolved.
Expand Down
Loading