forked from jsnbuchanan/crowd-funder-for-time-pwa
update to 0.3.47 - fix linting
This commit is contained in:
@@ -98,7 +98,7 @@ import { useClipboard } from "@vueuse/core";
|
|||||||
|
|
||||||
import QuickNav from "@/components/QuickNav.vue";
|
import QuickNav from "@/components/QuickNav.vue";
|
||||||
import UserNameDialog from "@/components/UserNameDialog.vue";
|
import UserNameDialog from "@/components/UserNameDialog.vue";
|
||||||
import { APP_SERVER, NotificationIface } from "@/constants/app";
|
import { NotificationIface } from "@/constants/app";
|
||||||
import { db, retrieveSettingsForActiveAccount } from "@/db/index";
|
import { db, retrieveSettingsForActiveAccount } from "@/db/index";
|
||||||
import { Contact } from "@/db/tables/contacts";
|
import { Contact } from "@/db/tables/contacts";
|
||||||
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
|
||||||
@@ -196,7 +196,7 @@ export default class ContactQRScanShow extends Vue {
|
|||||||
if (Array.isArray(payload.contacts)) {
|
if (Array.isArray(payload.contacts)) {
|
||||||
// reroute to the ContactsImport
|
// reroute to the ContactsImport
|
||||||
(this.$router as Router).push({
|
(this.$router as Router).push({
|
||||||
path: '/contacts-import/' + url.substring(url.lastIndexOf('/') + 1),
|
path: "/contacts-import/" + url.substring(url.lastIndexOf("/") + 1),
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -883,7 +883,7 @@ export default class ContactsView extends Vue {
|
|||||||
if (Array.isArray(payload.contacts)) {
|
if (Array.isArray(payload.contacts)) {
|
||||||
// reroute to the ContactsImport
|
// reroute to the ContactsImport
|
||||||
(this.$router as Router).push({
|
(this.$router as Router).push({
|
||||||
path: '/contacts-import/' + url.substring(url.lastIndexOf('/') + 1),
|
path: "/contacts-import/" + url.substring(url.lastIndexOf("/") + 1),
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user