This commit is contained in:
ThatOneCalculator 2022-09-13 17:40:06 -07:00
parent eb9063fe19
commit 594e849850
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.119.0-calc-rc.10",
"version": "12.119.0-calc-rc.11",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -31,7 +31,7 @@
</template>
<script lang="ts" setup>
import { computed, watch } from 'vue';
import { computed, ref, watch } from 'vue';
import MkButton from '@/components/MkButton.vue';
import { definePageMetadata } from '@/scripts/page-metadata';
import { i18n } from '@/i18n';
@ -45,8 +45,8 @@ const props = defineProps<{
}
}>();
let users = [];
let group = null;
const users = ref<any[]>([]);
const group = ref<any>();
const router = useRouter();
@ -115,7 +115,7 @@ function transfer() {
async function deleteGroup() {
const { canceled } = await os.confirm({
type: 'warning',
text: i18n.ts('removeAreYouSure', { x: group.name }),
text: i18n.t('removeAreYouSure', { x: group.name }),
});
if (canceled) return;