File uploading and fixes #261
@@ -1,22 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
|
|
||||||
import InsertTemplateComponent from '@components/common/InsertTemplateComponent.vue'
|
|
||||||
|
|
||||||
const props = defineProps(
|
|
||||||
{
|
|
||||||
prettyName: {type: String, required: true}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
const emit = defineEmits(['update:defaultData'])
|
|
||||||
|
|
||||||
function setDefault(data: string) {
|
|
||||||
const emitName = "update:defaultData";
|
|
||||||
emit(emitName, data)
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
|
|
||||||
</template>
|
|
||||||
@@ -137,7 +137,7 @@ function isVersionSelectionAvailable() {
|
|||||||
<div class="flex flex-col flex-none w-full 2xl:w-1/2 h-1/3 2xl:h-full items-center pb-2 pr-2">
|
<div class="flex flex-col flex-none w-full 2xl:w-1/2 h-1/3 2xl:h-full items-center pb-2 pr-2">
|
||||||
<div class="flex place-content-between w-full items-center pb-2">
|
<div class="flex place-content-between w-full items-center pb-2">
|
||||||
<span class="dark:text-white">Result:</span>
|
<span class="dark:text-white">Result:</span>
|
||||||
<div class="flex space-x-2">
|
<div class="flex space-x-2 overflow-x-scroll">
|
||||||
<select v-model="engine" name="engine" @change="changeAvailableVersions()" class="px-3 rounded-full border border-slate-400 bg-white dark:text-slate-100 dark:bg-gray-600">
|
<select v-model="engine" name="engine" @change="changeAvailableVersions()" class="px-3 rounded-full border border-slate-400 bg-white dark:text-slate-100 dark:bg-gray-600">
|
||||||
<option v-for="engine in enginesForCurrentTool" :value="engine">{{ engine }}</option>
|
<option v-for="engine in enginesForCurrentTool" :value="engine">{{ engine }}</option>
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Reference in New Issue
Block a user