Skip to content

Commit

Permalink
fix(recruitment): Resolve recruitment button exposure issue (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
im-gnar committed Nov 13, 2022
1 parent 6565bbc commit edf6e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/recruitment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@ export default defineComponent({
return Math.ceil(result / 86400000);
},
before_recruitment() {
return this.notice_day < 0 && this.s_day >= 0;
return this.notice_day < 0 && this.s_day > 0;
},
is_recruiting() {
return this.s_day < 0 && this.d_day >= 0;
return this.s_day <= 0 && this.d_day >= 0;
},
},
methods: {
Expand Down

0 comments on commit edf6e39

Please sign in to comment.