Fix subtitle in EditCandidate (#188)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2021-09-13 01:12:43 +03:00 committed by GitHub
parent f561be69ca
commit ed3954e5da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,9 +49,9 @@
<Panel icon={Contact} title={object.firstName + ' ' + object.lastName} {object} on:close={() => { dispatch('close') }}>
<svelte:fragment slot="subtitle">
<div class="flex-row-reverse" style="width: 100%">
<Channels value={object.channels}/>
<div class="flex-between flex-reverse" style="width: 100%">
<CircleButton icon={Edit} label={'Edit'} on:click={(ev) => showPopup(SocialEditor, { values: object.channels ?? [] }, ev.target, (result) => { saveChannels(result) })} />
<Channels value={object.channels}/>
</div>
</svelte:fragment>