Skip to content

Commit

Permalink
Improve the about text and fix the welcome process
Browse files Browse the repository at this point in the history
  • Loading branch information
filips123 committed Sep 2, 2024
1 parent 49c872f commit cfa4083
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 5 additions & 4 deletions website/src/components/CommonAbout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ defineProps<{
<a href="https://github.com/filips123/GimVicUrnik/wiki" target="_blank">dokumentaciji</a>.
</p>
<p v-if="showDataCollection">
Aplikacija zbira omejene podatke o brskalniku in uporabi za namene odpravljanja napak in
izboljšanja učinkovitosti. Podatki se ne uporabljajo za identifikacijo uporabnikov,
oglaševanje ali druge namene.
Aplikacija s pomočjo storitve
<a href="https://sentry.io/privacy/" target="_blank">Sentry</a> zbira omejene podatke o
napravi in uporabi za namene odpravljanja napak ter izboljšanja učinkovitosti. Podatki se ne
uporabljajo za identifikacijo uporabnikov, oglaševanje ali druge namene.
</p>
<span v-if="showDevelopers">Razvijalci:</span>
<ul v-if="showDevelopers">
Expand All @@ -38,7 +39,7 @@ defineProps<{
<p v-if="showFeedback">
Če ste odkrili napako v aplikaciji ali podatkih, želite prispevati k razvoju ali ponuditi
povratne informacije, lahko to naredite na
<a href="https://github.com/filips123/GimVicUrnik/issues/new/choose" target="_blank"
<a href="https://github.com/filips123/GimVicUrnik/wiki/Povratne-informacije" target="_blank"
>uradnem repozitoriju</a
>.
</p>
Expand Down
6 changes: 4 additions & 2 deletions website/src/components/SettingsSelectEntity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,10 @@ const availableList = computed(() => {
// Display the correct dialogs based on state
useEventListener(window, 'popstate', event => {
entityTypeDialog.value = event.state.entityTypeDialog
entityListDialog.value = event.state.entityListDialog
if (event.state?.entityTypeDialog && event.state?.entityListDialog) {
entityTypeDialog.value = event.state.entityTypeDialog
entityListDialog.value = event.state.entityListDialog
}
})
// Replace the history state with the initial state
Expand Down

0 comments on commit cfa4083

Please sign in to comment.