Skip to content

Commit 20b7c67

Browse files
committed
fix error for tests
1 parent e341801 commit 20b7c67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/TabTraining.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ export default {
137137
const distOptions = computed(() => {
138138
let dist_options = []
139139
if (templateOptions.value.distOptions == 'all') {
140-
return [spawn, torchrun]
140+
return [torchrun, spawn]
141141
}
142-
for (const option of [spawn, torchrun]) {
142+
for (const option of [torchrun, spawn]) {
143143
if (templateOptions.value.distOptions.includes(option.name)) {
144144
dist_options.push(option)
145145
}

0 commit comments

Comments
 (0)