|
@ -241,8 +241,9 @@ export default class ContactsView extends Vue { |
|
|
showGiveNumbers = false; |
|
|
showGiveNumbers = false; |
|
|
showGiveTotals = true; |
|
|
showGiveTotals = true; |
|
|
showGiveConfirmed = true; |
|
|
showGiveConfirmed = true; |
|
|
|
|
|
alertTitle = ""; |
|
|
|
|
|
alertMessage = ""; |
|
|
|
|
|
|
|
|
// 'created' hook runs when the Vue instance is first created |
|
|
|
|
|
async created() { |
|
|
async created() { |
|
|
await db.open(); |
|
|
await db.open(); |
|
|
const settings = await db.settings.get(MASTER_SETTINGS_KEY); |
|
|
const settings = await db.settings.get(MASTER_SETTINGS_KEY); |
|
@ -267,10 +268,9 @@ export default class ContactsView extends Vue { |
|
|
const identity = JSON.parse(account?.identity || "null"); |
|
|
const identity = JSON.parse(account?.identity || "null"); |
|
|
|
|
|
|
|
|
if (!identity) { |
|
|
if (!identity) { |
|
|
console.error( |
|
|
throw new Error( |
|
|
"Attempted to load Give records with no identity available.", |
|
|
"Attempted to load Give records with no identity available.", |
|
|
); |
|
|
); |
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// load all the time I have given |
|
|
// load all the time I have given |
|
@ -782,10 +782,6 @@ export default class ContactsView extends Vue { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// This same popup code is in many files. |
|
|
|
|
|
alertTitle = ""; |
|
|
|
|
|
alertMessage = ""; |
|
|
|
|
|
|
|
|
|
|
|
public showGiveAmountsClassNames() { |
|
|
public showGiveAmountsClassNames() { |
|
|
return { |
|
|
return { |
|
|
"bg-slate-500": this.showGiveTotals, |
|
|
"bg-slate-500": this.showGiveTotals, |
|
|