-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11606 from muditchoudhary/issue-10254-improve-coa…
…ch-tabs-accessibility Issue 10254: Improve coach tabs accessibility of Reports Lesson Tab
- Loading branch information
Showing
8 changed files
with
110 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 10 additions & 1 deletion
11
kolibri/plugins/coach/assets/src/views/reports/ReportsLessonLearnerListPage.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
<template> | ||
|
||
<ReportsLessonBase :showLearners="true" /> | ||
<ReportsLessonBase :showLearners="true" :activeTabId="ReportsLessonTabs.LEARNERS"> | ||
<KTabPanel :tabsId="REPORTS_LESSON_TABS_ID" :activeTabId="ReportsLessonTabs.LEARNERS" /> | ||
</ReportsLessonBase> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import { REPORTS_LESSON_TABS_ID, ReportsLessonTabs } from '../../constants/tabsConstants'; | ||
import ReportsLessonBase from './ReportsLessonBase'; | ||
export default { | ||
name: 'ReportsLessonLearnerListPage', | ||
components: { | ||
ReportsLessonBase, | ||
}, | ||
data() { | ||
return { | ||
REPORTS_LESSON_TABS_ID, | ||
ReportsLessonTabs, | ||
}; | ||
}, | ||
}; | ||
</script> |
11 changes: 10 additions & 1 deletion
11
kolibri/plugins/coach/assets/src/views/reports/ReportsLessonReportPage.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,28 @@ | ||
<template> | ||
|
||
<ReportsLessonBase :showResources="true" /> | ||
<ReportsLessonBase :showResources="true" :activeTabId="ReportsLessonTabs.REPORTS"> | ||
<KTabPanel :tabsId="REPORTS_LESSON_TABS_ID" :activeTabId="ReportsLessonTabs.REPORTS" /> | ||
</ReportsLessonBase> | ||
|
||
</template> | ||
|
||
|
||
<script> | ||
import { REPORTS_LESSON_TABS_ID, ReportsLessonTabs } from '../../constants/tabsConstants'; | ||
import ReportsLessonBase from './ReportsLessonBase'; | ||
export default { | ||
name: 'ReportsLessonReportPage', | ||
components: { | ||
ReportsLessonBase, | ||
}, | ||
data() { | ||
return { | ||
REPORTS_LESSON_TABS_ID, | ||
ReportsLessonTabs, | ||
}; | ||
}, | ||
}; | ||
</script> |