Skip to content

Commit

Permalink
refactor: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Lamas <pedrolamas@gmail.com>
  • Loading branch information
pedrolamas committed Nov 24, 2024
1 parent 852c0ee commit 1c4f673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/widgets/beacon/BeaconCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
v-if="saveDialogState.open"
v-model="saveDialogState.open"
:existing-name="saveDialogState.existingName"
@save="handlModelSave"
@save="handleModelSave"
/>
</collapsable-card>
</template>
Expand Down Expand Up @@ -199,7 +199,7 @@ export default class BeaconCard extends Mixins(StateMixin, ToolheadMixin) {
}
}
handlModelSave (config: { name: string; removeDefault: boolean }) {
handleModelSave (config: { name: string; removeDefault: boolean }) {
if (config.name !== this.beacon.model) {
this.sendGcode(`BEACON_MODEL_SAVE NAME="${config.name}"`)
}
Expand Down

0 comments on commit 1c4f673

Please sign in to comment.