Skip to content

Commit

Permalink
Refactor import paths for InvitationList and UserList components
Browse files Browse the repository at this point in the history
- Update import paths for InvitationList.vue and UserList.vue components in Invitations.vue and Users.vue files respectively to reflect new component directory structure.
- This change ensures that the correct components are imported and used in the respective pages.
  • Loading branch information
realashleybailey committed Sep 28, 2023
1 parent 31f4d6e commit 876313b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/modules/admin/pages/Invitations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { mapState } from "pinia";
import { useThemeStore } from "@/stores/theme";
import AdminTemplate from "@/templates/AdminTemplate.vue";
import InvitationList from "../components/Lists//InvitationList.vue";
import InvitationList from "../components/Invitations/InvitationList/InvitationList.vue";
import InviteForm from "@/components/Forms/InviteForm.vue";
export default defineComponent({
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/modules/admin/pages/Users.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { useThemeStore } from "@/stores/theme";
import { mapActions, mapState } from "pinia";
import AdminTemplate from "@/templates/AdminTemplate.vue";
import UserList from "../components/Lists//UserList.vue";
import UserList from "../components/Users/UserList/UserList.vue";
export default defineComponent({
name: "UsersView",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</DefaultButton>
<div v-if="!hideMFA" class="flex justify-center items-center">
<button type="button" @click="$emit('mfaLogin')" class="text-secondary text-sm font-medium">
{{ __("Login with MFA") }}
{{ __("Login with Passkey") }}
</button>
</div>
</div>
Expand Down

0 comments on commit 876313b

Please sign in to comment.