[GH-ISSUE #1784] Missing "Current queue" link in the sidebar #982

Closed
opened 2026-02-26 02:34:50 +03:00 by kerem · 1 comment
Owner

Originally created by @chrisvoo on GitHub (Jul 14, 2024).
Original GitHub issue: https://github.com/koel/koel/issues/1784

Describe the bug
Hi, I'm not sure if this has to be considered a bug or if it is intended, but in the section "Your library" (previously "Your Music") I cannot see the "Current queue" link anymore.

To reproduce
Steps to reproduce the behavior:

  1. Got to https://demo.koel.dev/ (version 6.11) and see "Current queue" in the sidebar"
  2. Compare it with the latest version

Expected behavior
I expect to see the link in that section

Screenshots
image

Environment

  • Koel version: 7.0.3
  • OS: Ubuntu 24.04
  • Browser: Chrome 125.0.6422.112 (Official Build) (64-bit)
  • PHP version: 8.3.6
  • Node version: 21.4.0

Notes
In case it's intended, for those that wants it back, you just need to add this block in the template of resources/assets/js/components/layout/main-wrapper/sidebar/SidebarYourLibrarySection.vue:

      <SidebarItem href="#/queue" screen="Queue">
        <template #icon>
          <Icon :icon="faList" fixed-width />
        </template>
        Current queue
      </SidebarItem>

and import the icon faList

import { faCompactDisc, faMicrophone, faList, faMusic, faPodcast, faTags } from '@fortawesome/free-solid-svg-icons'
Originally created by @chrisvoo on GitHub (Jul 14, 2024). Original GitHub issue: https://github.com/koel/koel/issues/1784 **Describe the bug** Hi, I'm not sure if this has to be considered a bug or if it is intended, but in the section "Your library" (previously "Your Music") I cannot see the "Current queue" link anymore. **To reproduce** Steps to reproduce the behavior: 1. Got to https://demo.koel.dev/ (version 6.11) and see "Current queue" in the sidebar" 2. Compare it with the latest version **Expected behavior** I expect to see the link in that section **Screenshots** ![image](https://github.com/user-attachments/assets/ac0bd5a9-5017-4d1c-abcb-3cb4c4f0d1f8) **Environment** - Koel version: 7.0.3 - OS: Ubuntu 24.04 - Browser: Chrome 125.0.6422.112 (Official Build) (64-bit) - PHP version: 8.3.6 - Node version: 21.4.0 **Notes** In case it's intended, for those that wants it back, you just need to add this block in the template of `resources/assets/js/components/layout/main-wrapper/sidebar/SidebarYourLibrarySection.vue`: ```html <SidebarItem href="#/queue" screen="Queue"> <template #icon> <Icon :icon="faList" fixed-width /> </template> Current queue </SidebarItem> ``` and import the icon `faList` ```typescript import { faCompactDisc, faMicrophone, faList, faMusic, faPodcast, faTags } from '@fortawesome/free-solid-svg-icons' ```
kerem closed this issue 2026-02-26 02:34:50 +03:00
Author
Owner

@phanan commented on GitHub (Jul 14, 2024):

The Queue has been moved to the footer (similar to Spotify's). You can also press Q to toggle the screen.

image
<!-- gh-comment-id:2227302977 --> @phanan commented on GitHub (Jul 14, 2024): The Queue has been moved to the footer (similar to Spotify's). You can also press Q to toggle the screen. <img width="478" alt="image" src="https://github.com/user-attachments/assets/1cbfcb2b-7636-4da2-ab82-34bf589c3d96">
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/koel-koel#982
No description provided.