Skip to content

Commit

Permalink
Merge pull request #165 from hibiya-itchief/develop
Browse files Browse the repository at this point in the history
投票ページのバグ修正・テーマの説明ついか
  • Loading branch information
aozoraUS authored Sep 6, 2024
2 parents b71c51e + 4b84fd3 commit 313bbf6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@
<v-col cols="10">
<div class="theme-image"></div>
</v-col>
<v-col cols="10">
<p>近日公開</p>
</v-col>
<p>
今年度の星陵祭のテーマは「Magic」です。星陵祭では、普段は忙しい雰囲気に包まれた日比谷高校が魔法にかけられたように特別な姿に様変わりします。ご来場の皆様も是非、いつもとひと味違う日比谷高校をお楽しみください。
</p>
</v-row>
</div>
</v-col>
Expand Down
3 changes: 2 additions & 1 deletion pages/votes/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ export default Vue.extend({
for (const ticket of this.taken_tickets as Ticket[]) {
const group = this.groups.find((group) => group.id === ticket.group_id)
if (group) {
if (group.enable_vote) {
// 投票可能な団体 ^ saw_groupsの中にその団体がまだ格納されていないなら
if (group.enable_vote && !this.saw_groups.includes(group)) {
this.saw_groups.push(group)
// ユーザーが二回投票していないかつその団体に投票可能 -> 団体に投票できる
Expand Down

0 comments on commit 313bbf6

Please sign in to comment.