From: Rigel Kent Date: Sun, 3 May 2020 14:13:48 +0000 (+0200) Subject: Reduce createdAt column size by using short date format X-Git-Tag: v2.2.0-rc.1~125 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7f979fd8aa76bd930d601d33b61eae39b8f5d90d;p=oweals%2Fpeertube.git Reduce createdAt column size by using short date format --- diff --git a/client/src/app/+admin/follows/followers-list/followers-list.component.html b/client/src/app/+admin/follows/followers-list/followers-list.component.html index 41f557510..a3be5961b 100644 --- a/client/src/app/+admin/follows/followers-list/followers-list.component.html +++ b/client/src/app/+admin/follows/followers-list/followers-list.component.html @@ -18,7 +18,7 @@ Follower handle State Score - Created + Created @@ -31,7 +31,7 @@ Pending {{ follow.score }} - {{ follow.createdAt }} + {{ follow.createdAt | date: 'short' }} diff --git a/client/src/app/+admin/follows/following-list/following-list.component.html b/client/src/app/+admin/follows/following-list/following-list.component.html index 5fb0f4900..4c232e29d 100644 --- a/client/src/app/+admin/follows/following-list/following-list.component.html +++ b/client/src/app/+admin/follows/following-list/following-list.component.html @@ -23,7 +23,7 @@ Host State - Created + Created Redundancy allowed @@ -41,7 +41,7 @@ Accepted Pending - {{ follow.createdAt }} + {{ follow.createdAt | date: 'short' }} Account - Muted at + Muted at @@ -42,7 +42,7 @@ - {{ accountBlock.createdAt }} + {{ accountBlock.createdAt | date: 'short' }} diff --git a/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html b/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html index d1098800b..aecdca387 100644 --- a/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html +++ b/client/src/app/+admin/moderation/instance-blocklist/instance-server-blocklist.component.html @@ -22,7 +22,7 @@ Instance - Muted at + Muted at @@ -35,7 +35,7 @@ - {{ serverBlock.createdAt }} + {{ serverBlock.createdAt | date: 'short' }} diff --git a/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html b/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html index b55b18333..cf5cd58f8 100644 --- a/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html +++ b/client/src/app/+admin/moderation/video-abuse-list/video-abuse-list.component.html @@ -42,7 +42,7 @@ Reporter Video - Created + Created State @@ -112,7 +112,7 @@ - {{ videoAbuse.createdAt }} + {{ videoAbuse.createdAt | date: 'short' }} diff --git a/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html b/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html index 5eabcb37f..f0e83dae9 100644 --- a/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html +++ b/client/src/app/+admin/moderation/video-blacklist-list/video-blacklist-list.component.html @@ -21,7 +21,7 @@ Video Sensitive Unfederated - Date + Date @@ -55,12 +55,12 @@ {{ booleanToText(videoBlacklist.video.nsfw) }} {{ booleanToText(videoBlacklist.unfederated) }} - {{ videoBlacklist.createdAt }} + {{ videoBlacklist.createdAt | date: 'short' }} {{ booleanToText(videoBlacklist.video.nsfw) }} {{ booleanToText(videoBlacklist.unfederated) }} - {{ videoBlacklist.createdAt }} + {{ videoBlacklist.createdAt | date: 'short' }}