Skip to content

Commit

Permalink
Merging in upstream changes
Browse files Browse the repository at this point in the history
  • Loading branch information
clpetersonucf committed Oct 26, 2023
2 parents 42feccd + 2243146 commit 9b080cb
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"eher/oauth": "1.0.7",
"aws/aws-sdk-php": "3.67.17",
"symfony/dotenv": "^5.1",
"ucfopen/materia-theme-ucf": "2.0.1"
"ucfopen/materia-theme-ucf": "2.0.2"
},
"suggest": {
"ext-memcached": "*"
Expand Down Expand Up @@ -97,9 +97,9 @@
"package": {
"name": "ucfopen/materia-theme-ucf",
"type": "fuel-package",
"version": "2.0.1",
"version": "2.0.2",
"dist": {
"url": "https://github.com/ucfopen/Materia-Theme-UCF/archive/refs/tags/v2.0.1.zip",
"url": "https://github.com/ucfopen/Materia-Theme-UCF/archive/refs/tags/v2.0.2.zip",
"type": "zip"
},
"source": {
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion materia-fake-s3.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.5-alpine
FROM ruby:2.6-alpine

RUN gem install fakes3 -v 2.0.0 --no-document

Expand Down
2 changes: 1 addition & 1 deletion src/components/my-widgets-score-semester-individual.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const MyWidgetScoreSemesterIndividual = ({ semester, instId }) => {
let newLogs = state.logs

result.pagination.forEach((record) => {
if (newLogs[record.userId]) newLogs[record.userId].scores.push({...record.scores})
if (newLogs[record.userId]) newLogs[record.userId].scores.push(...record.scores)
else newLogs[record.userId] = { userId: record.userId, name: record.name, searchableName: record.searchableName, scores: record.scores }
newLogs[record.userId].scores.sort(_compareScores)
})
Expand Down
12 changes: 12 additions & 0 deletions src/components/user-admin-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,18 @@

> div {
display: inline-block;

&.img-holder {
display: inline-block;

img {
width: 50px;
height: 50px;
border-radius: 3px;
display: inline-block;
margin-right: 10px;
}
}
}
}

Expand Down

0 comments on commit 9b080cb

Please sign in to comment.