mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-07 11:45:24 +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>
|
<div>
|
||||||
<ActivityIndicator size="sm" />
|
<ActivityIndicator size="sm" />
|
||||||
</div>
|
</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>
|
||||||
) : (
|
) : (
|
||||||
<div className="flex justify-start items-center">
|
<div className="flex justify-start items-center">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user