Skip to content

Commit

Permalink
Merge pull request #343 from agiledev-students-fall2023/Sprint/4/spik…
Browse files Browse the repository at this point in the history
…e/329

changed total displayed issues
  • Loading branch information
swostikpati authored Dec 4, 2023
2 parents 7a6f5e1 + 3c6a807 commit 78b5a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front-end/src/layouts/StudentDashboard/StudentDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const StudentDashboard = () => {
const [windowWidth, setWindowWidth] = useState(window.innerWidth);
// Other state initializations for UI functionalities
const [currentPage, setCurrentPage] = useState(1);
const itemsPerPage = windowWidth <= 768 ? 15 : 10;
const itemsPerPage = windowWidth <= 768 ? 10 : 12;
const [selectedDepartment, setSelectedDepartment] = useState("");
const [selectedStatus, setSelectedStatus] = useState("");
const [searchQuery, setSearchQuery] = useState("");
Expand Down

0 comments on commit 78b5a87

Please sign in to comment.