mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
Update Timeline.vue, add missing notification type
This commit is contained in:
parent
b7362caf50
commit
8d32ff0589
4 changed files with 8 additions and 3 deletions
|
@ -23,7 +23,7 @@ return [
|
||||||
| This value is the version of your PixelFed instance.
|
| This value is the version of your PixelFed instance.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'version' => '0.5.1',
|
'version' => '0.5.2',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
2
public/js/components.js
vendored
2
public/js/components.js
vendored
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",
|
"/js/app.js": "/js/app.js?id=763d01bb175be69c8ad3",
|
||||||
"/css/app.css": "/css/app.css?id=986cee6cfca852babf8e",
|
"/css/app.css": "/css/app.css?id=986cee6cfca852babf8e",
|
||||||
"/js/timeline.js": "/js/timeline.js?id=415bfde862ab8c5b4548",
|
"/js/timeline.js": "/js/timeline.js?id=415bfde862ab8c5b4548",
|
||||||
|
|
|
@ -308,6 +308,11 @@
|
||||||
<span class="font-weight-bold">{{n.account.username}}</span> mentioned you.
|
<span class="font-weight-bold">{{n.account.username}}</span> mentioned you.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue