Skip to content

Commit

Permalink
[native] fix(Linkwarden): Options were not showing
Browse files Browse the repository at this point in the history
fixes #1738

Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Oct 6, 2024
1 parent 2f8e853 commit b082e20
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ui/views/native/Options.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
v-bind.sync="data"
@reset="onReset"
@delete="onDelete" />
<OptionsLinkwarden
v-if="data.type === 'linkwarden'"
v-bind.sync="data"
@reset="onReset"
@delete="onDelete" />
<OptionsWebdav
v-if="data.type === 'webdav'"
v-bind.sync="data"
Expand Down Expand Up @@ -60,10 +65,11 @@ import { actions } from '../../store/definitions'
import { routes } from '../../NativeRouter'
import OptionsGoogleDrive from '../../components/OptionsGoogleDrive'
import OptionsGit from '../../components/OptionsGit.vue'
import OptionsLinkwarden from '../../components/OptionsLinkwarden.vue'
export default {
name: 'Options',
components: { OptionsGit, OptionsGoogleDrive, OptionsNextcloudBookmarks, OptionsWebdav, OptionsFake },
components: { OptionsLinkwarden, OptionsGit, OptionsGoogleDrive, OptionsNextcloudBookmarks, OptionsWebdav, OptionsFake },
data() {
return {
drawer: false,
Expand Down

0 comments on commit b082e20

Please sign in to comment.