Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Cordova #1530

Merged
merged 10 commits into from
Jan 15, 2024
Prev Previous commit
chore: add workaround to keep background after using qr scanner
davidyuk committed Jan 15, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 4c4742d34890fd933b71feff2e601b72599d49d3
6 changes: 6 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -45,4 +45,10 @@ export default {
html, body {
height: var(--height);
}
// cordova-plugin-qrscanner makes webview transparent on android, but doesn't reverts it
// because of this, some elements on other pages looks different
body {
background: #fff;
}
</style>

Unchanged files with check annotations Beta

this.$store.commit('addFollower', {
id: data.toString('base64'),
name: prompt(this.$t('remote-connection.settings.new.prompt-name'))

Check warning on line 34 in src/pages/mobile/SettingsRemoteConnectionNew.vue

GitHub Actions / validate / build_test

Unexpected prompt
|| this.$t('remote-connection.settings.new.default-name'),
});
this.$router.push({ name: 'settings-remote-connection' });