Skip to content

Commit

Permalink
fix: variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
fschade committed Oct 25, 2023
1 parent 4ce4a07 commit feddde7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web-app-files/src/components/Search/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ export default defineComponent({
(newVal, oldVal) => {
// return early if this view is not active, no search needed
{
const isSearchViewPainted = isLocationCommonActive(router, 'files-common-search')
if (!isSearchViewPainted) {
const isSearchViewActive = isLocationCommonActive(router, 'files-common-search')
if (!isSearchViewActive) {
return
}
}
Expand Down

0 comments on commit feddde7

Please sign in to comment.