Skip to content

Commit e53ca5e

Browse files
committed
constをただreturnしていたのでそのままreturnするように変更
1 parent 820d71e commit e53ca5e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/EditingScreen.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export default Vue.extend({
282282
title: this.fourthPageData.materialsTitle,
283283
url: this.fourthPageData.materialsUrl
284284
})
285-
const lessonData: classData.Lesson = {
285+
return {
286286
startTime: startTimeDate,
287287
endTime: endTimeDate,
288288
title: this.firstPageData.title,
@@ -297,7 +297,6 @@ export default Vue.extend({
297297
materials: materialData,
298298
isHidden: this.isHidden
299299
}
300-
return lessonData
301300
}
302301
}
303302
})

0 commit comments

Comments
 (0)