From 7f979fd8aa76bd930d601d33b61eae39b8f5d90d Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sun, 3 May 2020 16:13:48 +0200 Subject: [PATCH] Reduce createdAt column size by using short date format --- .../follows/followers-list/followers-list.component.html | 4 ++-- .../follows/following-list/following-list.component.html | 4 ++-- .../instance-account-blocklist.component.html | 4 ++-- .../instance-server-blocklist.component.html | 4 ++-- .../video-abuse-list/video-abuse-list.component.html | 4 ++-- .../video-blacklist-list.component.html | 6 +++--- 6 files changed, 13 insertions(+), 13 deletions(-) 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' }} -- 2.41.0