Skip to content

Commit

Permalink
Merge pull request #313 from sohosai/develop
Browse files Browse the repository at this point in the history
deploy 20240519-2
  • Loading branch information
appare45 authored May 19, 2024
2 parents 47f8900 + b5e0302 commit 7d86cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sos24-use-case/src/form/dto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl From<(Form, Option<FormAnswer>)> for FormSummaryDto {
let (answer_id, answered_at) = form_answer
.map(|form_answer| {
let form_answer = form_answer.destruct();
(Some(form_answer.id), Some(form_answer.updated_at))
(Some(form_answer.id), Some(form_answer.created_at))
})
.unwrap_or((None, None));

Expand Down

0 comments on commit 7d86cf4

Please sign in to comment.