forked from mirror/pixelfed
Merge pull request #630 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
ade7a51a4d
|
@ -279,7 +279,7 @@ class StatusController extends Controller
|
|||
$photos = 0;
|
||||
$videos = 0;
|
||||
foreach($mimes as $mime) {
|
||||
if(in_array($mime, $allowed) == false) {
|
||||
if(in_array($mime, $allowed) == false && $mime !== 'video/mp4') {
|
||||
continue;
|
||||
}
|
||||
if(str_contains($mime, 'image/')) {
|
||||
|
|
|
@ -23,7 +23,7 @@ return [
|
|||
| This value is the version of your PixelFed instance.
|
||||
|
|
||||
*/
|
||||
'version' => '0.5.1',
|
||||
'version' => '0.5.2',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/components.js": "/js/components.js?id=96ce3848888232d3703a",
|
||||
"/js/components.js": "/js/components.js?id=f7eff1b7304c561d5f8c",
|
||||
"/js/app.js": "/js/app.js?id=763d01bb175be69c8ad3",
|
||||
"/css/app.css": "/css/app.css?id=986cee6cfca852babf8e",
|
||||
"/js/timeline.js": "/js/timeline.js?id=415bfde862ab8c5b4548",
|
||||
|
|
|
@ -308,6 +308,11 @@
|
|||
<span class="font-weight-bold">{{n.account.username}}</span> mentioned you.
|
||||
</p>
|
||||
</div>
|
||||
<div v-else-if="n.type == 'follow'">
|
||||
<p class="my-0">
|
||||
<span class="font-weight-bold">{{n.account.username}}</span> followed you.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue