Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
yottahmd committed Jul 10, 2022
1 parent 85c3400 commit b475693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/src/components/DAGErrors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function DAGErrors({ DAGs, errors, hasError }: Props) {
<div>Please check the below errors!</div>
<div className="content">
<ul>
{DAGs.filter((w) => w.Error).map((w) => {
{DAGs.filter((w) => w.ErrorT).map((w) => {
const url = encodeURI(w.File);
return (
<li>
Expand Down

0 comments on commit b475693

Please sign in to comment.