Skip to content

Commit

Permalink
EPMRPP-88348 ||code review fixes - 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim73i committed Jan 23, 2024
1 parent c438c9f commit 537fb0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { DynamicField } from '../dynamicField';
export const MultilineTextField = (props) => {
const { field, darkView, ...rest } = props;

const formatInputValue = (value) => value && value[0];
const formatInputValue = (value) => value?.[0];

const parseInputValue = (value) => (value ? [value] : []);

Expand Down

0 comments on commit 537fb0a

Please sign in to comment.