From 6c58698682b9e2e430c08229b430869869d9a7be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rio=20Bal=C3=A7a?= Date: Fri, 26 Aug 2022 16:53:45 +0100 Subject: [PATCH 01/13] Add new keywords-input.vue component --- frontend/src/i18n/en.js | 3 +- .../eagle-eye/components/eagle-eye-search.vue | 45 ++--- .../shared/form/autocomplete-many-input.vue | 2 +- .../shared/form/autocomplete-one-input.vue | 2 +- frontend/src/shared/form/keywords-input.vue | 156 ++++++++++++++++++ frontend/src/shared/shared-module.js | 4 +- 6 files changed, 176 insertions(+), 36 deletions(-) create mode 100644 frontend/src/shared/form/keywords-input.vue diff --git a/frontend/src/i18n/en.js b/frontend/src/i18n/en.js index 3fbc66a686..6b62720576 100644 --- a/frontend/src/i18n/en.js +++ b/frontend/src/i18n/en.js @@ -259,7 +259,8 @@ const en = { 'issues-close': 'closed an issue', 'issues-closed': 'closed an issue', 'issue-comment': 'commented on an issue', - 'pull_request-comment': 'commented on a pull request', + 'pull_request-comment': + 'commented on a pull request', 'discussion-started': 'started a discussion', 'discussion-comment': 'commented on a discussion', contributed_to_community: diff --git a/frontend/src/premium/eagle-eye/components/eagle-eye-search.vue b/frontend/src/premium/eagle-eye/components/eagle-eye-search.vue index 277d908a5d..d455438ed5 100644 --- a/frontend/src/premium/eagle-eye/components/eagle-eye-search.vue +++ b/frontend/src/premium/eagle-eye/components/eagle-eye-search.vue @@ -1,15 +1,15 @@