This commit is contained in:
Pavol Rusnak
2023-09-27 08:02:28 +02:00
committed by GitHub
parent d79a55b4c6
commit b13c470d54
3 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ LNURL has a fallback scheme, so if scanned by a regular QR code reader it can de
![lnurl fallback](https://i.imgur.com/CPBKHIv.png) ![lnurl fallback](https://i.imgur.com/CPBKHIv.png)
Using **lnbits.com/?lightning="LNURL-withdraw"** will trigger a withdraw that builds an LNbits wallet. Using **lnbits.com/?lightning="LNURL-withdraw"** will trigger a withdraw that builds an LNbits wallet.
Example use would be an ATM, which utilises LNURL, if the user scans the QR with a regular QR code scanner app, they will still be able to access the funds. Example use would be an ATM, which utilizes LNURL, if the user scans the QR with a regular QR code scanner app, they will still be able to access the funds.
![lnurl ATM](https://i.imgur.com/Gi6bn3L.jpg) ![lnurl ATM](https://i.imgur.com/Gi6bn3L.jpg)

View File

@@ -14,7 +14,7 @@
</template> </template>
</q-banner> </q-banner>
<q-banner v-if="!updateAvailable" class="bg-green text-white"> <q-banner v-if="!updateAvailable" class="bg-green text-white">
<q-icon size="28px" name="checknark"></q-icon> <q-icon size="28px" name="checkmark"></q-icon>
<span v-text="$t('latest_update', {version: statusData.version})"></span> <span v-text="$t('latest_update', {version: statusData.version})"></span>
</q-banner> </q-banner>
<q-card> <q-card>

View File

@@ -165,7 +165,7 @@
<q-toggle <q-toggle
v-if="extension.isAvailable && extension.isInstalled && g.user.admin" v-if="extension.isAvailable && extension.isInstalled && g.user.admin"
:label="extension.isActive ? $t('activated'): $t('deactivated') " :label="extension.isActive ? $t('activated'): $t('deactivated') "
color="secodary" color="secondary"
style="max-height: 21px" style="max-height: 21px"
v-model="extension.isActive" v-model="extension.isActive"
@input="toggleExtension(extension)" @input="toggleExtension(extension)"