logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 9684bf6e94df03ff721912c7406f9318765e7ce1
parent d770bab1b0e5d543547c59d86aef533f77ceafe2
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Thu, 19 Nov 2020 12:51:40 +0000

Merge branch 'fix/missing-play-circle-icon' into 'develop'

add missing play-circle icon

See merge request pleroma/pleroma-fe!1290

Diffstat:

Msrc/components/attachment/attachment.js6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js @@ -8,14 +8,16 @@ import { faFile, faMusic, faImage, - faVideo + faVideo, + faPlayCircle } from '@fortawesome/free-solid-svg-icons' library.add( faFile, faMusic, faImage, - faVideo + faVideo, + faPlayCircle ) const Attachment = {