This commit is contained in:
Fred Boniface 2023-07-03 23:08:43 +01:00
parent 475746300e
commit 9729cc6c77
3 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,7 @@
export let station = ""; export let station = "";
export let title = "Loading..."; export let title = "Loading...";
import { onMount } from 'svelte' import { onMount } from 'svelte'
import StaffTrainDetail from '$lib/ldb/staff-train-detail.svelte';
import Loading from '$lib/navigation/loading.svelte'; import Loading from '$lib/navigation/loading.svelte';
import Nav from '$lib/navigation/nav.svelte'; import Nav from '$lib/navigation/nav.svelte';
import { uuid } from '$lib/stores/uuid'; import { uuid } from '$lib/stores/uuid';

View File

View File

@ -87,9 +87,9 @@
<br> <br>
<input type="text" maxlength="7" autocomplete="off" placeholder="TIPLOC" bind:value={val.tiploc}> <input type="text" maxlength="7" autocomplete="off" placeholder="TIPLOC" bind:value={val.tiploc}>
<br> <br>
<input type="text" maxlength="9" autocomplete="off" placeholder="STANOX" bind:value={val.stanox}> <input type="text" maxlength="10" autocomplete="off" placeholder="STANOX" bind:value={val.stanox}>
<br> <br>
<input type="number" maxlength="6" min="100000" autocomplete="off" placeholder="NLC" bind:value={val.nlc}> <input type="number" maxlength="6" min="0" autocomplete="off" placeholder="NLC" bind:value={val.nlc}>
<br> <br>
<input type="text" readonly autocomplete="off" placeholder="UIC" bind:value={val.uic}> <input type="text" readonly autocomplete="off" placeholder="UIC" bind:value={val.uic}>
<br> <br>
@ -110,6 +110,7 @@
min-width: 130px; min-width: 130px;
height: 30px; height: 30px;
margin-bottom: 10px; margin-bottom: 10px;
text-transform: uppercase;
} }
button { button {
border-radius: 50px; border-radius: 50px;