Quickfix dealing with a student incorrectly identifying as a doubler when not entered for seating in one audition but only advancement
This commit is contained in:
parent
6f657415aa
commit
87e3ec322d
|
|
@ -43,7 +43,7 @@ class Entry extends Model
|
||||||
|
|
||||||
// If we're looking for seating rank, return the rank from the list of ranked entries
|
// If we're looking for seating rank, return the rank from the list of ranked entries
|
||||||
if ($type === 'seating') {
|
if ($type === 'seating') {
|
||||||
return $rankedEntries->where('id', $this->id)->first()->seatingRank;
|
return $rankedEntries->where('id', $this->id)->first()->seatingRank ?? 'No Rank';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $rankedEntries->where('id', $this->id)->first()->advancementRank;
|
return $rankedEntries->where('id', $this->id)->first()->advancementRank;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue