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

@ -1,8 +1,6 @@
<script setup lang="ts">
import { computed } from 'vue';
import Button from 'primevue/button';
import ToggleSwitch from 'primevue/toggleswitch';
import { open } from '@tauri-apps/plugin-shell';
import InstallButton from './InstallButton.vue';
import LinkButton from './LinkButton.vue';
import ModTitlecard from './ModTitlecard.vue';
@ -40,7 +38,7 @@ const model = computed({
v-model="model"
/>
<InstallButton :pkg="pkg" />
<Button
<!-- <Button
rounded
icon="pi pi-folder"
severity="help"
@ -49,7 +47,7 @@ const model = computed({
class="ml-2 shrink-0"
style="width: 2rem; height: 2rem"
v-on:click="pkg?.loc && open(pkg.loc.path ?? '')"
/>
/> -->
<LinkButton v-if="pkgs.networkStatus === 'online'" :pkg="pkg" />
</div>
</template>