Skip to content

Commit

Permalink
Fix variable names.
Browse files Browse the repository at this point in the history
  • Loading branch information
francois2metz committed May 27, 2024
1 parent 8195dc8 commit cdb3946
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/popup.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ export default defineComponent({
() => props.className,
(value, previous) => {
if (previous) {
popup.removeClassName(p);
popup.removeClassName(previous);
}
if (value) {
popup.addClassName(v);
popup.addClassName(value);
}
},
);
Expand Down

0 comments on commit cdb3946

Please sign in to comment.