Skip to content

Commit

Permalink
remove the label values
Browse files Browse the repository at this point in the history
  • Loading branch information
schelv committed Jul 20, 2024
1 parent 5227541 commit 274037e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/ha-base-time-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,27 +79,27 @@ export class HaBaseTimeInput extends LitElement {
/**
* Label for the day input
*/
@property() dayLabel = "Day";
@property() dayLabel = "";

/**
* Label for the hour input
*/
@property() hourLabel = "Hour";
@property() hourLabel = "";

/**
* Label for the min input
*/
@property() minLabel = "Minute";
@property() minLabel = "";

/**
* Label for the sec input
*/
@property() secLabel = "Second";
@property() secLabel = "";

/**
* Label for the milli sec input
*/
@property() millisecLabel = "Milisecond";
@property() millisecLabel = "";

/**
* show the sec field
Expand Down

0 comments on commit 274037e

Please sign in to comment.