From fc11149f1faed148434225dc314cacf796f14fd9 Mon Sep 17 00:00:00 2001 From: ogerly Date: Mon, 27 Feb 2023 10:31:10 +0100 Subject: [PATCH 1/2] add visible event an answer question text in my contribution list --- frontend/src/assets/scss/gradido-template.scss | 4 ++++ .../src/components/Contributions/ContributionListItem.vue | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/assets/scss/gradido-template.scss b/frontend/src/assets/scss/gradido-template.scss index 9edb72a4f..5a63d3e78 100644 --- a/frontend/src/assets/scss/gradido-template.scss +++ b/frontend/src/assets/scss/gradido-template.scss @@ -21,6 +21,10 @@ body { padding: 1px; } +.hover-font-bold:hover { + font-weight: bold; +} + .word-break { word-break: break-word; } diff --git a/frontend/src/components/Contributions/ContributionListItem.vue b/frontend/src/components/Contributions/ContributionListItem.vue index 87ffeb682..56b59d55b 100644 --- a/frontend/src/components/Contributions/ContributionListItem.vue +++ b/frontend/src/components/Contributions/ContributionListItem.vue @@ -25,7 +25,11 @@
{{ $t('contributionText') }}
{{ memo }}
-
+
{{ $t('contribution.alert.answerQuestion') }}
From ed7cf461fb27fbe2bda50cb2fa324bf4c317cb33 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Tue, 28 Feb 2023 21:06:51 +0100 Subject: [PATCH 2/2] fix(backend): set email tls true in test --- backend/src/emails/sendEmailTranslated.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/emails/sendEmailTranslated.test.ts b/backend/src/emails/sendEmailTranslated.test.ts index eb4b26b92..79ba1cd77 100644 --- a/backend/src/emails/sendEmailTranslated.test.ts +++ b/backend/src/emails/sendEmailTranslated.test.ts @@ -8,6 +8,7 @@ CONFIG.EMAIL_SMTP_URL = 'EMAIL_SMTP_URL' CONFIG.EMAIL_SMTP_PORT = '1234' CONFIG.EMAIL_USERNAME = 'user' CONFIG.EMAIL_PASSWORD = 'pwd' +CONFIG.EMAIL_TLS = true jest.mock('nodemailer', () => { return {