Skip to content

Commit 24acefb

Browse files
committed
fix(NewAccount): Disable git backend on android/ios
Signed-off-by: Marcel Klehr <[email protected]>
1 parent 79fb301 commit 24acefb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@
724724
"message": "Git over HTTPS"
725725
},
726726
"DescriptionAdaptergit": {
727-
"message": "The Git option syncs your bookmarks by storing them in a file in the provided Git repository. There is no accompanying web UI for this option, but you can use it with any Git hosting server, like Github, Gitlab, Gitea, etc. It can sync http, ftp, data, file and javascript bookmarks. You can not make use of end-to-end encryption when using this option."
727+
"message": "The Git option syncs your bookmarks by storing them in a file in the provided Git repository. There is no accompanying web UI for this option, but you can use it with any Git hosting server, like Github, Gitlab, Gitea, etc. It can sync http, ftp, data, file and javascript bookmarks. You can not make use of end-to-end encryption when using this option. This option is currently not available in the mobile app."
728728
},
729729
"LabelGiturl": {
730730
"message": "Repository URL using HTTP"

src/ui/views/NewAccount.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
v-for="a in adapters"
3737
:key="a.type">
3838
<v-radio
39+
:disabled="!isBrowser && a.type === 'git'"
3940
:value="a.type">
4041
<template #label>
4142
<div class="heading">

0 commit comments

Comments
 (0)