Skip to content

Commit

Permalink
fixed TextArea width in Audio Timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Clay-Ferguson committed Sep 11, 2024
1 parent 728a72d commit b44a0a4
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/main/resources/public/src/tabs/AudioPlayerView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,12 @@ export class AudioPlayerView extends AppTab<any, AudioPlayerView> {
})
]),
new Div(null, null, [
// (todo-0: fix this), but for now I'm using a div to limit width
new Div(null, { className: "timeRemainingEditField" }, [
this.timeLeftTextField = new TextField({
label: "Timer (mins.)",
labelLeft: true,
val: this.timeLeftState
})
])
this.timeLeftTextField = new TextField({
outterClass: "timeRemainingEditField",
label: "Timer (mins.)",
labelLeft: true,
val: this.timeLeftState
})
]),
this.customDiv
])
Expand Down

0 comments on commit b44a0a4

Please sign in to comment.