We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a363b3 commit 2e04e18Copy full SHA for 2e04e18
client/packages/lowcoder/src/comps/comps/timerComp.tsx
@@ -209,9 +209,9 @@ const AvatarGroupView = (props: RecordConstructorToView<typeof childrenMap> & {
209
else if (timerState === 'started') pauseAction()
210
else if (timerState === 'paused') resumeAction()
211
}}
212
- >{timerState === 'stoped' ? trans('timer.start') : (timerState === 'started' ? trans('timer.pause') : trans('timer.resume'))}</StyledButton>
+ >{timerState === 'stoped' ? trans('timer.start') : (timerState === 'started' ? trans('timer.pause') : trans('timer.resume'))}</StyledButton>
213
<StyledButton
214
- $style={props.resetButtonStyle}
+ $style={props.resetButtonStyle}
215
onClick={() => resetAction()}
216
>{trans('timer.reset')}
217
</StyledButton>
0 commit comments