From 77d7348db254a940ede0700dcfc9bf582ed36055 Mon Sep 17 00:00:00 2001 From: Andrey Platov <andrey@hardcoreeng.com> Date: Mon, 4 Oct 2021 17:08:08 +0200 Subject: [PATCH] social controls Signed-off-by: Andrey Platov <andrey@hardcoreeng.com> --- .../recruit-resources/src/components/EditCandidate.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/recruit-resources/src/components/EditCandidate.svelte b/plugins/recruit-resources/src/components/EditCandidate.svelte index 03155dc36f..21dc659e05 100644 --- a/plugins/recruit-resources/src/components/EditCandidate.svelte +++ b/plugins/recruit-resources/src/components/EditCandidate.svelte @@ -67,8 +67,6 @@ <AttributesBar slot="subtitle" /> <!-- <svelte:fragment slot="subtitle"> <div class="flex-between flex-reverse" style="width: 100%"> - <Channels value={object.channels}/> - <CircleButton icon={Edit} label={'Edit'} on:click={(ev) => showPopup(SocialEditor, { values: object.channels ?? [] }, ev.target, (result) => { saveChannels(result) })} /> </div> </svelte:fragment> --> @@ -81,7 +79,9 @@ <div class="name"><EditBox placeholder="John" maxWidth="20rem" bind:value={firstName} on:change={ firstNameChange }/></div> <div class="name"><EditBox placeholder="Appleseed" maxWidth="20rem" bind:value={lastName} on:change={ lastNameChange }/></div> <div class="title"><AttributeEditor maxWidth="20rem" _class={recruit.class.Candidate} {object} key="title"/></div> - <div class="city"><AttributeEditor maxWidth="20rem" _class={recruit.class.Candidate} {object} key="city"/></div> + <!-- <div class="city"><AttributeEditor maxWidth="20rem" _class={recruit.class.Candidate} {object} key="city"/></div> --> + <Channels value={object.channels}/> + <CircleButton icon={Edit} label={'Edit'} on:click={(ev) => showPopup(SocialEditor, { values: object.channels ?? [] }, ev.target, (result) => { saveChannels(result) })} /> </div> </div>