Browse Source

fix bad text in pop-up, and fix name of class

kb/add-usage-guide
Trent Larson 9 months ago
parent
commit
8dbfcd38d3
  1. 2
      src/views/ContactAmountsView.vue
  2. 4
      src/views/ContactsView.vue

2
src/views/ContactAmountsView.vue

@ -124,7 +124,7 @@ interface Notification {
}
@Component({ components: { QuickNav } })
export default class ContactsView extends Vue {
export default class ContactAmountssView extends Vue {
$notify!: (notification: Notification, timeout?: number) => void;
activeDid = "";

4
src/views/ContactsView.vue

@ -170,7 +170,7 @@
<button
class="text-sm bg-blue-600 text-white px-2 py-1.5 rounded-l-md"
@click="onClickAddGive(activeDid, contact.did)"
title="givenByMeDescriptions[contact.did]"
:title="givenByMeDescriptions[contact.did] || ''"
>
To:
{{
@ -189,7 +189,7 @@
<button
class="text-sm bg-blue-600 text-white px-2 py-1.5 rounded-r-md -ml-1.5 border-l border-blue-400"
@click="onClickAddGive(contact.did, activeDid)"
title="givenToMeDescriptions[contact.did]"
:title="givenToMeDescriptions[contact.did] || ''"
>
From:
{{

Loading…
Cancel
Save