Merge branch 'master' into func/xpath_tooltips

This commit is contained in:
2023-06-26 10:28:21 +02:00
7 changed files with 54 additions and 75 deletions

View File

@@ -12,7 +12,7 @@ const props = defineProps(
const message = ref('');
const visible = ref('hidden');
const fetchLink = window.location.protocol + "//" + window.location.hostname + "/mock/api/mock"
const fetchLink = window.location.protocol + "//" + window.location.hostname + "/mock/api/mock";
function prepareAndSendData(){
if (props.messageData != null|| props.messageData != undefined ){
@@ -27,7 +27,7 @@ function prepareAndSendData(){
function showToast(){
visible.value = "visible";
setTimeout( () => { visible.value = "opacity-0" } , 1500 )
setTimeout( () => { visible.value = "opacity-0" } , 1000 )
}
function hideToast(){