Skip to content

Commit

Permalink
Update mailings-new-modal.vue to use click event instead of is-select…
Browse files Browse the repository at this point in the history
…ed event
  • Loading branch information
omar-bear committed Jul 16, 2024
1 parent 0f7fe04 commit 48f3578
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
},
methods: {
onClick() {
this.$emit('is-selected', this.template);
this.$emit('click', this.template);
},
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default {
:key="template.id"
:template="template"
:is-selected="checkIsSelectedTemplate(template)"
@is-selected="selectTemplate"
@click="selectTemplate"
/>
</v-card>
</div>
Expand Down

0 comments on commit 48f3578

Please sign in to comment.