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 Contact Import
</h1> </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" /> <input type="checkbox" v-model="makeVisible" class="mr-2" />
Make my activity visible to these contacts. Make my activity visible to these contacts.
</span> </span>
@ -31,7 +31,7 @@
</div> </div>
<!-- Results List --> <!-- 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"> <li v-for="(contact, index) in contactsImporting" :key="contact.did">
<div <div
v-if=" v-if="

Loading…
Cancel
Save