bump to version 0.3.31, tweak messaging to include offers

This commit is contained in:
2024-10-25 15:12:06 -06:00
parent 42dcb3b43c
commit e1d0a2b02c
8 changed files with 74 additions and 25 deletions

View File

@@ -833,7 +833,7 @@ export default class AccountViewView extends Vue {
const registration = await navigator.serviceWorker.ready;
this.subscription = await registration.pushManager.getSubscription();
this.isSubscribed = !!this.subscription;
console.log("Got to the end of 'mounted' call.");
// console.log("Got to the end of 'mounted' call in AccountViewView.");
/**
* Beware! I've seen where we never get to this point because "ready" never resolves.
*/
@@ -1225,7 +1225,7 @@ export default class AccountViewView extends Vue {
`Import progress: ${progress.completedRows} of ${progress.totalRows} rows completed.`,
);
if (progress.done) {
console.log(`Imported ${progress.completedTables} tables.`);
// console.log(`Imported ${progress.completedTables} tables.`);
this.$notify(
{
group: "alert",

View File

@@ -528,7 +528,7 @@ export default class GiftedDetails extends Vue {
console.error("Error deleting image:", error);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
if ((error as any).response.status === 404) {
console.log("The image was already deleted:", error);
console.log("Weird: the image was already deleted.", error);
localStorage.removeItem("imageUrl");
this.imageUrl = "";

View File

@@ -32,7 +32,11 @@
<table class="min-w-full bg-white">
<thead>
<tr>
<th class="py-2">ID</th>
<th class="py-2">
ID
<br />
(click for link)
</th>
<th class="py-2">Notes</th>
<th class="py-2">Expires At</th>
<th class="py-2">Redeemed</th>
@@ -164,7 +168,6 @@ export default class InviteOneView extends Vue {
this.contactsRedeemed[invite.redeemedBy] = contact;
}
}
console.log("contactsRedeemed", this.contactsRedeemed);
} catch (error) {
console.error("Error fetching invites:", error);
this.$notify(

View File

@@ -209,7 +209,7 @@
Hit the big
<fa
icon="plus"
class="bg-blue-600 text-white px-1 py-1 rounded-full"
class="bg-green-600 text-white px-1.5 py-1 rounded-full"
/>
button. You'll never know until you try.
</div>
@@ -310,8 +310,8 @@ export default class ProjectsView extends Vue {
offers: OfferSummaryRecord[] = [];
projectNameFromHandleId: Record<string, string> = {}; // mapping from handleId to description
projects: PlanData[] = [];
showOffers = true;
showProjects = false;
showOffers = false;
showProjects = true;
libsUtil = libsUtil;
didInfo = didInfo;