mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-26 14:15:52 +00:00
removed button changed possition to make more acessibility (#7341)
This commit is contained in:
committed by
GitHub
parent
7c58740c74
commit
6f6a9100e9
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user