fix: use Quasar.notify (#2707)

* fix: use Quasar.Notify.create
instead of this.$q, had issues when pasting invoice, using the `Quasar`
is more consistent
This commit is contained in:
dni ⚡
2024-09-24 16:18:56 +02:00
committed by GitHub
parent 99c5f00c91
commit 1d0547ea97
12 changed files with 46 additions and 47 deletions
+9 -9
View File
@@ -1020,7 +1020,7 @@
this.filteredExtensions = this.extensions.concat([])
this.handleTabChanged('installed')
this.tab = 'installed'
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Extension uninstalled!'
})
@@ -1050,7 +1050,7 @@
extension.installedRelease = null
extension.inProgress = false
extension.hasDatabaseTables = false
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Extension DB deleted!'
})
@@ -1069,7 +1069,7 @@
this.g.user.wallets[0].adminkey
)
.then(response => {
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: `Extension '${extension.id}' ${action}d!`
})
@@ -1094,7 +1094,7 @@
this.g.user.wallets[0].adminkey
)
.then(response => {
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Extension enabled!'
})
@@ -1115,7 +1115,7 @@
this.g.user.wallets[0].adminkey
)
.then(response => {
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Extension disabled!'
})
@@ -1148,7 +1148,7 @@
}
)
.then(response => {
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Payment info updated!'
})
@@ -1330,7 +1330,7 @@
ws.addEventListener('message', async ({data}) => {
const payment = JSON.parse(data)
if (payment.pending === false) {
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Invoice Paid!'
})
@@ -1399,13 +1399,13 @@
this.paylinkWebsocket.addEventListener('message', async ({data}) => {
const resp = JSON.parse(data)
if (resp.paid) {
this.$q.notify({
Quasar.Notify.create({
type: 'positive',
message: 'Invoice Paid!'
})
this.installExtension(this.selectedRelease)
} else {
this.$q.notify({
Quasar.Notify.create({
type: 'warning',
message: 'Invoice tracking lost!'
})
+1 -1
View File
@@ -319,7 +319,7 @@
.confirmDialog('Do you really wanna disconnect this peer?')
.onOk(() => {
this.api('DELETE', `/peers/${id}`).then(response => {
this.$q.notify({
Quasar.Notify.create({
message: 'Disconnected',
icon: null
})