Skip to content

Commit aa74c9b

Browse files
4manasamanasa
andauthored
Fixed the time payload issue (#452)
Co-authored-by: manasa <[email protected]>
1 parent 628e89a commit aa74c9b

File tree

1 file changed

+1
-1
lines changed
  • packages/react-sdk-components/src/components/field/Time

1 file changed

+1
-1
lines changed

packages/react-sdk-components/src/components/field/Time/Time.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function Time(props: TimeProps) {
3939
};
4040

4141
const handleChange = date => {
42-
const theValue = date && date.isValid() ? date.format('HH:mm') : null;
42+
const theValue = date && date.isValid() ? date.format('HH:mm:ss') : null;
4343
handleEvent(actions, 'changeNblur', propName, theValue);
4444
};
4545

0 commit comments

Comments
 (0)