Skip to content

Commit

Permalink
Fix classes view all bug #1769
Browse files Browse the repository at this point in the history
  • Loading branch information
c3bryant committed Apr 7, 2022
1 parent a475104 commit e976925
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/core/models/classes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ class SectionData {
time: json["time"] == null ? null : json["time"],
days: json["days"] == null ? null : json["days"],
date: json["date"] == null ? null : json["date"],
building: json["building"] == null ? null : json["building"],
room: json["room"] == null ? null : json["room"],
building: json["building"] == null ? "" : json["building"],
room: json["room"] == null ? "" : json["room"],
instructorName:
json["instructor_name"] == null ? null : json["instructor_name"],
json["instructor_name"] == null ? "" : json["instructor_name"],
specialMtgCode:
json["special_mtg_code"] == null ? null : json["special_mtg_code"],
enrollStatus:
Expand All @@ -151,9 +151,9 @@ class SectionData {
"time": time == null ? null : time,
"days": days == null ? null : days,
"date": date == null ? null : date,
"building": building == null ? null : building,
"room": room == null ? null : room,
"instructor_name": instructorName == null ? null : instructorName,
"building": building == null ? "" : building,
"room": room == null ? "" : room,
"instructor_name": instructorName == null ? "" : instructorName,
"special_mtg_code": specialMtgCode == null ? null : specialMtgCode,
"enrollStatus": enrollStatus == null ? null : enrollStatus,
};
Expand Down

0 comments on commit e976925

Please sign in to comment.