mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 03:35:26 +03:00
Update Export.jsx
Prevent filename overflow in export list
This commit is contained in:
parent
c35c7da82a
commit
fcc0eeb587
@ -237,7 +237,7 @@ function Exports({ exports, onSetClip, onDeleteClip }) {
|
||||
<div>
|
||||
<ActivityIndicator size="sm" />
|
||||
</div>
|
||||
<div className="px-2">{item.name.substring(12, item.name.length - 4)}</div>
|
||||
<div className="px-2 overflow-hidden">{item.name.substring(12, item.name.length - 4)}</div>
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex justify-start items-center">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user