update
This commit is contained in:
@@ -223,9 +223,9 @@ onBeforeUnmount(() => {
|
|||||||
|
|
||||||
<!-- Path List -->
|
<!-- Path List -->
|
||||||
<div class="overflow-y-auto flex-grow p-1 text-sm">
|
<div class="overflow-y-auto flex-grow p-1 text-sm">
|
||||||
<ul v-if="!favoritePathsStore.isLoading && favoritePathsStore.filteredFavoritePaths.length" class="list-none m-0 p-0">
|
<ul v-if="!favoritePathsStore.isLoading && filteredPaths.length" class="list-none m-0 p-0">
|
||||||
<li
|
<li
|
||||||
v-for="favPath in favoritePathsStore.filteredFavoritePaths"
|
v-for="favPath in filteredPaths"
|
||||||
:key="favPath.id"
|
:key="favPath.id"
|
||||||
class="p-2 hover:bg-primary/10 cursor-pointer group flex items-center justify-between rounded-md transition-colors duration-150"
|
class="p-2 hover:bg-primary/10 cursor-pointer group flex items-center justify-between rounded-md transition-colors duration-150"
|
||||||
@click="handleItemClick(favPath)"
|
@click="handleItemClick(favPath)"
|
||||||
|
|||||||
@@ -1634,8 +1634,6 @@ const handleOpenEditorClick = () => {
|
|||||||
<!-- <button @click="searchQuery = ''; searchInputRef?.focus()" v-if="searchQuery" class="absolute right-2 top-1/2 -translate-y-1/2 text-text-secondary hover:text-foreground">×</button> -->
|
<!-- <button @click="searchQuery = ''; searchInputRef?.focus()" v-if="searchQuery" class="absolute right-2 top-1/2 -translate-y-1/2 text-text-secondary hover:text-foreground">×</button> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- End Path Actions -->
|
|
||||||
<!-- Wrapper for Favorite Paths Button and Modal -->
|
|
||||||
<div class="relative flex-shrink-0">
|
<div class="relative flex-shrink-0">
|
||||||
<!-- Favorite Paths Button -->
|
<!-- Favorite Paths Button -->
|
||||||
<button
|
<button
|
||||||
@@ -1653,6 +1651,9 @@ const handleOpenEditorClick = () => {
|
|||||||
@navigate-to-path="handleNavigateToPathFromFavorites"
|
@navigate-to-path="handleNavigateToPathFromFavorites"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Path Bar with History Dropdown -->
|
<!-- Path Bar with History Dropdown -->
|
||||||
<div ref="pathInputWrapperRef" class="relative flex items-center bg-background border border-border rounded px-1.5 py-0.5 min-w-[100px] flex-shrink">
|
<div ref="pathInputWrapperRef" class="relative flex items-center bg-background border border-border rounded px-1.5 py-0.5 min-w-[100px] flex-shrink">
|
||||||
|
|||||||
Reference in New Issue
Block a user