Skip to content

Commit

Permalink
Typo: emphasisize=>emphasize
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Oct 21, 2024
1 parent 882401a commit cd63e25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ export default defineComponent({
return props.moduleFlavor;
};

const emphasisizeModule = (): void => {
const emphasizeModule = (): void => {
emit('over');
};

const deEmphasisizeModule = (): void => {
const deEmphasizeModule = (): void => {
emit('out');
};

Expand All @@ -47,8 +47,8 @@ export default defineComponent({

return {
moduleClass,
emphasisizeModule,
deEmphasisizeModule,
emphasizeModule,
deEmphasizeModule,
clickedModule,
applyModule,
isAppliedModule,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
:class="moduleClass()"
:ref="el => landscapeElements.set(module.slugString(), el)"
:data-selector="`${module.slugString()}-module`"
@mouseover="emphasisizeModule()"
@mouseleave="deEmphasisizeModule()"
@mouseover="emphasizeModule()"
@mouseleave="deEmphasizeModule()"
@click="clickedModule()"
>
<div class="jhlite-chip--title" :class="moduleClass()">
Expand Down

0 comments on commit cd63e25

Please sign in to comment.