Skip to content

Commit

Permalink
fix table width (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmi4er4 committed Jul 9, 2024
1 parent 4bfc5ac commit 14eaa86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/learning/gradebook/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __init__(self,

def get_table_width(self):
# First 4 columns in gradebook table, see `pages/_gradebook.scss`
magic = 150 + 140 + 80 + 66
magic = 150 + 150 + 80 + 66
return len(self.assignments) * self.ASSIGNMENT_COLUMN_WIDTH + magic

@cached_property
Expand Down

0 comments on commit 14eaa86

Please sign in to comment.