From 66581854f8c19c5b11d50efe64b025026656ca6b Mon Sep 17 00:00:00 2001 From: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com> Date: Sat, 19 Mar 2022 22:17:23 +0600 Subject: [PATCH] Vacancy card fix (#1177) Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com> --- .../src/components/CandidateCard.svelte | 5 ++-- .../src/components/VacancyCard.svelte | 27 ++++++++++++++++--- tests/sanity/tests/login.spec.ts | 5 ++++ tests/sanity/tests/recruit.spec.ts | 2 +- tests/sanity/tests/utils.ts | 5 ++++ 5 files changed, 37 insertions(+), 7 deletions(-) diff --git a/plugins/recruit-resources/src/components/CandidateCard.svelte b/plugins/recruit-resources/src/components/CandidateCard.svelte index 2f6806513a..8ebc745784 100644 --- a/plugins/recruit-resources/src/components/CandidateCard.svelte +++ b/plugins/recruit-resources/src/components/CandidateCard.svelte @@ -18,10 +18,11 @@ import { ChannelsView } from '@anticrm/contact-resources' import { Avatar, createQuery } from '@anticrm/presentation' import type { Candidate } from '@anticrm/recruit' - import { Component, showPanel } from '@anticrm/ui' + import { Component, Label, showPanel } from '@anticrm/ui' import view from '@anticrm/view' import chunter from '@anticrm/chunter' import attachment from '@anticrm/attachment' + import recruit from '../plugin' export let candidate: Candidate @@ -39,7 +40,7 @@