Skip to content

Commit e7aeeea

Browse files
committed
webapp/components/training/TrainingSteps: fix typo
1 parent 49a135e commit e7aeeea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp/src/components/training/TrainingSteps.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<TrainerDashboard
1717
v-show="trainingStore.step === 3"
1818
:task
19-
:dataset="unamedDataset"
19+
:dataset="unnamedDataset"
2020
@model="(m) => (trainedModel = m)"
2121
/>
2222

@@ -90,7 +90,7 @@ watch(
9090
onMounted(setupTrainingStore);
9191
9292
const dataset = ref<LabeledDataset[DataType]>();
93-
const unamedDataset = computed<Dataset<DataFormat.Raw[DataType]> | undefined>(
93+
const unnamedDataset = computed<Dataset<DataFormat.Raw[DataType]> | undefined>(
9494
() => {
9595
if (task.value === undefined || dataset.value === undefined)
9696
return undefined;

0 commit comments

Comments
 (0)