fix: support for translationengine

This commit is contained in:
2025-04-13 23:24:32 +00:00
parent 7ea31c7a87
commit 37df371006
5 changed files with 20 additions and 11 deletions

View File

@ -2,14 +2,11 @@
import { ref } from 'vue';
import Button from 'primevue/button';
import InputText from 'primevue/inputtext';
import * as path from '@tauri-apps/api/path';
import { open } from '@tauri-apps/plugin-shell';
import { invoke } from '../invoke';
import { useGeneralStore, usePrfStore } from '../stores';
import { usePrfStore } from '../stores';
import { ProfileMeta } from '../types';
const prf = usePrfStore();
const general = useGeneralStore();
const isEditing = ref(false);
const props = defineProps({
@ -113,7 +110,7 @@ const deleteProfile = async () => {
style="width: 2rem; height: 2rem"
@click="isEditing = true"
/>
<Button
<!-- <Button
rounded
icon="pi pi-folder"
severity="help"
@ -126,7 +123,7 @@ const deleteProfile = async () => {
.join(general.dataDir, `profile-${p!.game}-${p!.name}`)
.then(open)
"
/>
/> -->
</div>
</template>