Autotest error messages

This commit is contained in:
2022-07-13 13:51:10 +02:00
parent a457e27307
commit f8676c4c13
2 changed files with 9 additions and 3 deletions

View File

@ -4,12 +4,14 @@ import { createEventDispatcher } from 'svelte';
import Toggle from 'components/webdesq/toggle.svelte';
import { operatorNames } from '../../lib/operators';
import { realValueNames } from '../../lib/realvalues';
import { fade } from 'svelte/transition';
export let value = [];
export let specs = {};
export let readonly = true;
export let language = 'en';
export let translate = s => s;
export let error = false;
const dispatch = createEventDispatcher();
const defaultEndpoint = {
@ -220,6 +222,10 @@ function removeEndpoint(i) {
</button>
</div>
{#if error}
<span transition:fade class="error">{error}</span>
{/if}
<style>
div:not(:last-child) {
margin-bottom: 10px;