merge: upstream

This commit is contained in:
Marie 2023-12-23 02:09:23 +01:00
commit 5db583a3eb
701 changed files with 50809 additions and 13660 deletions

View file

@ -20,7 +20,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</template>
<script lang="ts" setup>
import { defineAsyncComponent, onMounted } from 'vue';
import { defineAsyncComponent, onMounted, ref, computed } from 'vue';
import MkInput from '@/components/MkInput.vue';
import MkButton from '@/components/MkButton.vue';
import * as os from '@/os.js';
@ -32,12 +32,12 @@ const props = defineProps<{
token?: string;
}>();
let password = $ref('');
const password = ref('');
async function save() {
await os.apiWithDialog('reset-password', {
token: props.token,
password: password,
password: password.value,
});
mainRouter.push('/');
}
@ -49,9 +49,9 @@ onMounted(() => {
}
});
const headerActions = $computed(() => []);
const headerActions = computed(() => []);
const headerTabs = $computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata({
title: i18n.ts.resetPassword,