Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

v1.1.0 #38

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 112 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@

# Change Log

## [v1.1.0] - 2024-08-15

### Added
- Chart label.

### Changed

### Fixed


## [v1.0.9] - 2024-08-08

### Added
- Loading icon when edit assign.

### Changed

### Fixed


## [v1.0.8] - 2024-08-07

### Added

### Changed
- Use window.location.href instead of navigate.

### Fixed


## [v1.0.7] - 2024-08-06

### Added

### Changed

### Fixed
- Import libery to use navigate method


## [v1.0.6] - 2024-08-06

### Added

### Changed
- Redirect method.

### Fixed


## [v1.0.5] - 2024-08-06

### Added

### Changed
- Change login to new authen server

### Fixed


## [v1.0.4] - 2024-08-05

### Added

### Changed
- Store state in cookie.

### Fixed


## [v1.0.3] - 2024-08-05

### Added

### Changed
- Store state in localStorage.

### Fixed


## [v1.0.2] - 2024-08-05

### Added

### Changed
- Change state storage from session to cookie.

### Fixed


## [v1.0.1] - 2024-08-05

### Added

### Changed
- Change state storage from cookie to session.

### Fixed


## [v1.0.0] - 2024-08-01

### Added
- First release.

### Changed

### Fixed

7 changes: 6 additions & 1 deletion src/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,9 @@ code {
opacity: 1;
}
}
/* ----- end notification dot ----- */
/* ----- end notification dot ----- */

.text-rotated {
transform: rotate(-90deg);
white-space: nowrap;
}
16 changes: 13 additions & 3 deletions src/src/pages/ST/Portfolio.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function Index() {
{
label: "Number of students",
data: [0,0,0,0,0,0,0,0,0,0],
backgroundColor: 'rgb(118, 191, 247)',
backgroundColor: 'rgb(0, 0, 0, 0)',
},
],
});
Expand Down Expand Up @@ -166,8 +166,18 @@ function Index() {
<span>Your current rank in this course: {Rank["Rank"]} of {Rank["Amount"]}</span>
</center>
</div>
<div className='col'>
<Bar options={options} data={data} />
<div className='col' style={{textAlign: "center", color: "rgb(123, 123, 123)"}}>
<div className='row'>
<div className='col-1'>
<div className='text-rotated' style={{marginTop: "12em"}}>
Number of students
</div>
</div>
<div className='col'>
<Bar options={options} data={data} />
Score percentage
</div>
</div>
</div>
</div>
) : (
Expand Down
Loading