sprint-bug-fixing (#6)

Co-authored-by: Karthik Sammy <10769@intelizign.com>
Reviewed-on: WizdomWaves/TedQuMobileApp#6
This commit is contained in:
karthik 2024-11-20 05:47:35 +00:00
parent 53f05cc65a
commit 1f40003d01
6 changed files with 9 additions and 9 deletions

View File

@ -49,25 +49,25 @@ class Sidebar extends React.Component<any, any> {
{
name: "School",
action: "School",
icon: "ios-school",
icon: "ios-business",
roles: [UserRoles.schoolAdmin]
},
{
name: "Manage Classes",
action: "Class",
icon: "ios-people",
icon: "ios-school",
roles: [UserRoles.schoolAdmin]
},
{
name: "Manage Teachers",
action: "TeacherView",
icon: "ios-person",
icon: "ios-people",
roles: [UserRoles.schoolAdmin]
},
{
name: "Question Bank",
action: "QuestionBank",
icon: "ios-person",
icon: "ios-book",
roles: [UserRoles.schoolAdmin]
},
{

View File

@ -127,7 +127,7 @@ const ParentTabNavigator = ({route, navigation} : any) => {
<Tab.Screen name="schoolCalendar" component={SchoolCalendar} initialParams={route.params} options={{ tabBarLabel: 'Calendar'}} />
<Tab.Screen name="studentDiary" component={DiaryView} initialParams={route.params} options={{ tabBarLabel: 'Diary'}} />
<Tab.Screen name="studentNoticeBoard" component={NoticeBoardView} initialParams={route.params} options={{ tabBarLabel: 'Notice Board'}} />
<Tab.Screen name="studentQuizzes" component={QuizzesView} initialParams={route.params} options={{ tabBarLabel: 'Quizz'}}/>
<Tab.Screen name="studentQuizzes" component={QuizzesView} initialParams={route.params} options={{ tabBarLabel: 'Quizzes'}}/>
<Tab.Screen name="homestudy" component={HomeStudyList} initialParams={route.params} options={{ tabBarLabel: 'Home Study'}}/>
</Tab.Navigator>
);

View File

@ -50,7 +50,7 @@ class Settings extends React.Component<any, any>{
logout = async () => {
Alert.alert(
"Please Confirm",
"Are you sure to logout?",
"Are you sure you want to logout?",
[
{
text: "Cancel",

View File

@ -158,7 +158,7 @@ class StudentView extends React.Component<any, any>{
Alert.alert(
"Please Confirm",
`Are you sure to ${action} student ?`,
`Are you sure you want to ${action} student ?`,
[
{
text: "Cancel",

View File

@ -116,7 +116,7 @@ class TeacherView extends React.Component<any, any>{
}
Alert.alert(
"Please Confirm",
`Are you sure to ${action} teacher ?`,
`Are you sure you want to ${action} teacher ?`,
[
{
text: "Cancel",

View File

@ -121,7 +121,7 @@ class ClassView extends React.Component<any, any>{
Alert.alert(
"Please Confirm",
`Are you sure to ${action} class ?`,
`Are you sure you want to ${action} class ?`,
[
{
text: "Cancel",