Skip to content

Commit

Permalink
Merge pull request #227 from eleliauk/main
Browse files Browse the repository at this point in the history
bugs
  • Loading branch information
eleliauk authored Jan 16, 2025
2 parents 627c214 + 522a409 commit 8377bcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/myclass/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Page: React.FC = () => {
]);
const [semSelector] = useState(['第一学期', '第二学期', '第三学期', '全部学期']);
const [year, setYear] = useState('2024-2025学年');
const [sem, setSem] = useState('第一学期');
const [sem, setSem] = useState('第二学期');

const [myclasses, setMyclasses] = useState<CouresProps[]>([]);

Expand Down Expand Up @@ -96,8 +96,8 @@ const Page: React.FC = () => {
};

return (
<View className="h-full w-full overflow-auto">
<View className="select">
<View className="h-[100vh] w-full overflow-auto">
<View className="select flex-1">
<Picker
mode="multiSelector"
range={[yearSelector, semSelector]}
Expand Down

0 comments on commit 8377bcd

Please sign in to comment.