Skip to content

Commit

Permalink
アラート以外の提出物を表示できるようにした
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamu-kazu222 committed May 15, 2024
1 parent 3a43be6 commit 254ea62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/products.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ div(v-else-if='isDashboard')
option(value='5') 5日経過 6日経過 7日以上経過
template(v-for='product_n_days_passed in productsGroupedByElapsedDays') <!-- product_n_days_passedはn日経過の提出物 -->
.a-card.h-auto(
v-if='!isDashboard || (isDashboard && product_n_days_passed.elapsed_days >= selectedDays)')
v-if='!isDashboard || (isDashboard && product_n_days_passed.elapsed_days >= 0 && product_n_days_passed.elapsed_days <= selectedDays + 2)')
//- TODO 以下を共通化する
//- prettier-ignore: need space between v-if and id
header.card-header.a-elapsed-days(
Expand Down

0 comments on commit 254ea62

Please sign in to comment.