Skip to content

Commit

Permalink
fix(app-file-manager): remove redundant quote character
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel910 committed Nov 21, 2024
1 parent e2f2ea3 commit ff2524a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const FieldRenderer = ({ getBind, Label, field }: CmsModelFieldRendererProps) =>
dotProp.delete(value, index)
)
}
placeholder={t`Select a file"`}
placeholder={t`Select a file`}
data-testid={`fr.input.file.${field.label}.${index}`}
/>
</InnerImageFieldWrapper>
Expand All @@ -141,7 +141,7 @@ const FieldRenderer = ({ getBind, Label, field }: CmsModelFieldRendererProps) =>
}}
{...bind}
showFileManager={() => selectFiles()}
placeholder={t`Select a file"`}
placeholder={t`Select a file`}
data-testid={`fr.input.file.${field.label}`}
/>
</InnerImageFieldWrapper>
Expand Down

0 comments on commit ff2524a

Please sign in to comment.