Skip to content

Commit

Permalink
refactor: rename field class to align with existing HTML elements
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Oct 16, 2024
1 parent 6cbf212 commit aa637ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/components/field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { customElement, property } from "lit/decorators.js";
* Field that identifies an input, or group of inputs.
*/
@customElement("sd-field")
export class StreamDeckField extends LitElement {
export class SDFieldElement extends LitElement {
/**
* @inheritdoc
*/
Expand Down Expand Up @@ -60,6 +60,6 @@ declare global {
/**
* Field that identifies an input, or group of inputs.
*/
"sd-field": StreamDeckField;
"sd-field": SDFieldElement;
}
}

0 comments on commit aa637ac

Please sign in to comment.