Skip to content

Commit

Permalink
Merge pull request #238 from axonivy/validations
Browse files Browse the repository at this point in the history
XIVY-13132 Validations
  • Loading branch information
ivy-lli authored Dec 9, 2024
2 parents 5f8153e + cbc461b commit a1e1e7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const TableField = <TData extends object>({
};

const ValidationRow = <TData,>({ row, validationPath }: { row: Row<TData>; validationPath: string }) => {
const message = useValidation(`${validationPath}.${row.index}`);
const message = useValidation(`${validationPath}.[${row.index}]`);
const cells = row.getVisibleCells();
return (
<>
Expand Down

0 comments on commit a1e1e7c

Please sign in to comment.