Skip to content

Commit

Permalink
Rename css class name
Browse files Browse the repository at this point in the history
See also: #5
  • Loading branch information
BECATRUE committed Nov 28, 2024
1 parent b5c371e commit 2750d3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wlm-ui/src/MainPage/Channel/Channel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
justify-content: space-between;
}

.channel-attr-container {
.channel-attr-editor-container {
display: grid;
grid-template-columns: auto 60px auto auto;
grid-template-rows: auto auto;
Expand Down
2 changes: 1 addition & 1 deletion wlm-ui/src/MainPage/Channel/Channel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Channel = (props: IProps) => {
<span>{props.channel.name}</span>
<button onClick={props.onClickUse} style={{ width: '60px' }}>{props.inUse ? 'In use' : 'Use'}</button>
</div>
<div className='channel-attr-container'>
<div className='channel-attr-editor-container'>
<b style={{ textAlign: 'left' }}>Exp. time</b>
<input
type='number'
Expand Down

0 comments on commit 2750d3a

Please sign in to comment.