Browse Source

remove actions from contact-import if all are the same as existing ones

split_build_process
Trent Larson 4 weeks ago
parent
commit
8ca3df31fb
  1. 4
      src/views/ContactImportView.vue

4
src/views/ContactImportView.vue

@ -16,7 +16,7 @@
Contact Import
</h1>
<span v-if="contactsImporting.length > 0" class="flex justify-center">
<span v-if="contactsImporting.length > sameCount" class="flex justify-center">
<input type="checkbox" v-model="makeVisible" class="mr-2" />
Make my activity visible to these contacts.
</span>
@ -31,7 +31,7 @@
</div>
<!-- Results List -->
<ul v-if="contactsImporting.length > 0" class="border-t border-slate-300">
<ul v-if="contactsImporting.length > sameCount" class="border-t border-slate-300">
<li v-for="(contact, index) in contactsImporting" :key="contact.did">
<div
v-if="

Loading…
Cancel
Save