Skip to content

Commit

Permalink
fix(ui) - Fix issue #53
Browse files Browse the repository at this point in the history
Beim Reload der NextStep-Page wird jetzt die FeedUrl neu ausgelesen.
  • Loading branch information
dnkbln committed Nov 23, 2024
1 parent 0fb7971 commit 48d443e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions client/src/pages/onboarding/steps/import/NextSteps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@
</template>

<script setup lang="ts">
import { type Action } from 'redux';
import { computed } from 'vue';
import { useI18n } from 'vue-i18n';
import { mapState } from 'redux-vuex';
import { selectors } from '../../../../store';
import { mapState, injectStore } from 'redux-vuex';
import { selectors, actions } from '../../../../store';
import FinishCard from '../../components/FinishCard.vue';
import PodloveButton from '../../../../components/button/Button.vue';
Expand All @@ -79,4 +80,7 @@ const state = mapState<{ feedUrl: string; site: string }>({
const episodesListLink = computed(() => `${state.site}/wp-admin/edit.php?post_type=podcast`);
const selectText = (event: MouseEvent) => (event?.target as HTMLInputElement).select();
const { dispatch } = injectStore();
dispatch(actions.podcast.readFeedUrl() as Action);
</script>

0 comments on commit 48d443e

Please sign in to comment.