removed button changed possition to make more acessibility (#7341)

This commit is contained in:
William Rodrigues
2026-03-12 04:40:12 -03:00
committed by GitHub
parent 7c58740c74
commit 6f6a9100e9

View File

@@ -130,10 +130,6 @@ const MultipartFormParams = ({ item, collection }) => {
if (fileName) {
return (
<div className="flex items-center file-value-cell">
<IconFile size={16} className="text-muted mr-1" />
<span className="file-name flex-1 truncate" title={Array.isArray(value) ? value.join(', ') : value}>
{fileName}
</span>
<button
className="clear-file-btn ml-1"
onClick={() => handleClearFile(row)}
@@ -141,6 +137,10 @@ const MultipartFormParams = ({ item, collection }) => {
>
<IconX size={16} />
</button>
<IconFile size={16} className="text-muted mr-1" />
<span className="file-name flex-1 truncate" title={Array.isArray(value) ? value.join(', ') : value}>
{fileName}
</span>
</div>
);
}