Skip to content

Commit

Permalink
Merge branch 'release/1.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
ipimpat committed Feb 5, 2023
2 parents d69a473 + 3d965be commit 65fcc0b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stubs/resources/js/Pages/API/Partials/ApiTokenManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const updateApiTokenForm = useForm({
permissions: [],
});
const deleteApiTokenForm = useForm();
const deleteApiTokenForm = useForm({});
const displayingToken = ref(false);
const managingPermissionsFor = ref(null);
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/js/Pages/Auth/VerifyEmail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const props = defineProps({
status: String,
});
const form = useForm();
const form = useForm({});
const submit = () => {
form.post(route('verification.send'));
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/js/Pages/Teams/Partials/DeleteTeamForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps({
});
const confirmingTeamDeletion = ref(false);
const form = useForm();
const form = useForm({});
const confirmTeamDeletion = () => {
confirmingTeamDeletion.value = true;
Expand Down
4 changes: 2 additions & 2 deletions stubs/resources/js/Pages/Teams/Partials/TeamMemberManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const updateRoleForm = useForm({
role: null,
});
const leaveTeamForm = useForm();
const removeTeamMemberForm = useForm();
const leaveTeamForm = useForm({});
const removeTeamMemberForm = useForm({});
const currentlyManagingRole = ref(false);
const managingRoleFor = ref(null);
Expand Down

0 comments on commit 65fcc0b

Please sign in to comment.