Skip to content

Commit

Permalink
Fix error from copy/paste
Browse files Browse the repository at this point in the history
  • Loading branch information
f-osorio committed Dec 17, 2024
1 parent c8b52d1 commit 5fa93de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/panels/edit/modals/AutoDeweyModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
style="background-color: whitesmoke"
>

<div class="dewey-modal" @mousedown="onSelectElement($event)" @touchstart="onSelectElement($event)">
<div class="dewey-modal" ref="autoDeweyContent" @mousedown="onSelectElement($event)" @touchstart="onSelectElement($event)">
<div>
<div class="dewey-menu-button">
<button @click="closeModal()" class="close-button">Close</button>
Expand Down Expand Up @@ -239,7 +239,7 @@
this.height = newRect.height
this.top = newRect.top
this.left = newRect.left
this.$refs.shelfListingContent.style.height = newRect.height + 'px'
this.$refs.autoDeweyContent.style.height = newRect.height + 'px'
},
inputFocus: function(){
this.$refs.inputLookup.focus()
Expand Down

0 comments on commit 5fa93de

Please sign in to comment.