Skip to content

Commit

Permalink
Core, Notivue - Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
smastrom committed Apr 14, 2024
1 parent e9171a4 commit a87cd65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/notivue/Notivue/NotivueImpl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ useRepositioning()
>
<!-- List Container -->
<ol
v-if="items.length > 0"
v-if="items.entries.value.length > 0"
v-bind="{ ...mouseEvents, ...touchEvents, ...elements.rootAttrs.value }"
:data-notivue-align="config.position.value.split('-')[0]"
:aria-label="props.listAriaLabel"
Expand Down
2 changes: 1 addition & 1 deletion packages/notivue/core/createStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function createQueue() {
},
add(item: StoreItem) {
this.entries.value.push(item)
triggerRef(this.entries)
this.triggerRef()
},
get(id: string) {
return this.entries.value.find((e) => e.id === id)
Expand Down

0 comments on commit a87cd65

Please sign in to comment.