From bb9ba61d12ad1b509ec8bbc322773bb7e188d4db Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Tue, 20 Apr 2021 16:21:13 -0500 Subject: [PATCH] feat(teams): show team name --- .../client/src/components/group-plans/taskInformation.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/client/src/components/group-plans/taskInformation.vue b/website/client/src/components/group-plans/taskInformation.vue index 80c2f97f32..ccc79a9198 100644 --- a/website/client/src/components/group-plans/taskInformation.vue +++ b/website/client/src/components/group-plans/taskInformation.vue @@ -13,7 +13,7 @@ />
-

{{ $t('groupTasksTitle') }}

+

{{ group.name }}

@@ -90,6 +90,10 @@ @import '~@/assets/scss/colors.scss'; @import '~@/assets/scss/create-task.scss'; + h1 { + color: $purple-300; + } + .tasks-navigation { margin-bottom: 40px; }