diff --git a/src/assets/viur_scriptor_api-0.0.2-py3-none-any.whl b/src/assets/viur_scriptor_api-0.0.3-py3-none-any.whl similarity index 63% rename from src/assets/viur_scriptor_api-0.0.2-py3-none-any.whl rename to src/assets/viur_scriptor_api-0.0.3-py3-none-any.whl index d51b994..a514dcb 100644 Binary files a/src/assets/viur_scriptor_api-0.0.2-py3-none-any.whl and b/src/assets/viur_scriptor_api-0.0.3-py3-none-any.whl differ diff --git a/src/components/CodeTab.vue b/src/components/CodeTab.vue index 63dddef..2b57769 100644 --- a/src/components/CodeTab.vue +++ b/src/components/CodeTab.vue @@ -40,7 +40,7 @@
- +
diff --git a/src/components/Interaction/Input.vue b/src/components/Interaction/Input.vue index 3c857ae..33d7cf0 100644 --- a/src/components/Interaction/Input.vue +++ b/src/components/Interaction/Input.vue @@ -29,12 +29,15 @@ v-model="value" :readonly="!props.entry.render" @keypress.enter="send" + :placeholder="props.placeholder" >
@@ -55,7 +58,7 @@ useTime: Boolean; imageURL: String; entry: {}, - + placeholder: String } import { onMounted, ref, watch } from "vue"; diff --git a/src/stores/PythonStore.ts b/src/stores/PythonStore.ts index dc69570..245cf7d 100644 --- a/src/stores/PythonStore.ts +++ b/src/stores/PythonStore.ts @@ -150,7 +150,7 @@ export const usePythonStore = defineStore('python', () => { async function loadPython() { isLoading.value = true; - const zipUrl2 = new URL("../assets/viur_scriptor_api-0.0.2-py3-none-any.whl", import.meta.url).href + const zipUrl2 = new URL("../assets/viur_scriptor_api-0.0.3-py3-none-any", import.meta.url).href await py.load([zipUrl2]);