Skip to content

Commit

Permalink
fix(search-panel): correct toggleExpandAll method call in template
Browse files Browse the repository at this point in the history
  • Loading branch information
purocean committed Jan 6, 2025
1 parent 5ee02b6 commit 8792265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/SearchPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
v-else-if="result.length > 1"
class="action-btn"
href="javascript:void(0)"
@click="toggleExpandAll"
@click="toggleExpandAll()"
>{{ $t(allResultCollapsed ? 'search-panel.expand-all' : 'search-panel.collapse-all') }}</a>
</div>
<div class="results" ref="resultsRef" v-if="result.length > 0">
Expand Down

0 comments on commit 8792265

Please sign in to comment.