chore: wrap actions to a single condition
This commit is contained in:
parent
dd035d04a0
commit
afc95e0ed3
@ -95,12 +95,12 @@ export function FileRow({ id, file }: FileRowProps) {
|
||||
|
||||
<Wrap>
|
||||
{isDecrypted && (
|
||||
<>
|
||||
<WrapItem>
|
||||
<Button type="button" onClick={togglePlay}>
|
||||
播放/暂停
|
||||
</Button>
|
||||
</WrapItem>
|
||||
)}
|
||||
<WrapItem>
|
||||
{file.decrypted && (
|
||||
<Link isExternal href={file.decrypted} download={decryptedName}>
|
||||
@ -108,6 +108,8 @@ export function FileRow({ id, file }: FileRowProps) {
|
||||
</Link>
|
||||
)}
|
||||
</WrapItem>
|
||||
</>
|
||||
)}
|
||||
<WrapItem>
|
||||
<Button type="button" onClick={handleDeleteRow}>
|
||||
删除
|
||||
|
Loading…
Reference in New Issue
Block a user