diff --git a/AUTHORS.md b/AUTHORS.md index 76d71d1292a..8da7d6f6762 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -99,3 +99,4 @@ If you have contributed to Kolibri, feel free to add your name and Github accoun | Vikramaditya Singh | Ghat0tkach | | Kris Katkus | katkuskris | | Garvit Singhal | GarvitSinghal47 | +| Adars T S | a6ar55 | diff --git a/kolibri/core/assets/src/views/AttemptLogList.vue b/kolibri/core/assets/src/views/AttemptLogList.vue index 0a9941aa3a0..132cfa60772 100644 --- a/kolibri/core/assets/src/views/AttemptLogList.vue +++ b/kolibri/core/assets/src/views/AttemptLogList.vue @@ -76,7 +76,6 @@ diff --git a/kolibri/core/assets/src/views/ExamReport/index.vue b/kolibri/core/assets/src/views/ExamReport/index.vue index 2de5905745d..cc29c10b59c 100644 --- a/kolibri/core/assets/src/views/ExamReport/index.vue +++ b/kolibri/core/assets/src/views/ExamReport/index.vue @@ -162,7 +162,7 @@ import find from 'lodash/find'; import MultiPaneLayout from 'kolibri.coreVue.components.MultiPaneLayout'; import commonCoreStrings from 'kolibri.coreVue.mixins.commonCoreStrings'; - import responsiveWindowMixin from 'kolibri.coreVue.mixins.responsiveWindowMixin'; + import useKResponsiveWindow from 'kolibri-design-system/lib/useKResponsiveWindow'; import { MasteryLogResource } from 'kolibri.resources'; import { now } from 'kolibri.utils.serverClock'; import MissingResourceAlert from 'kolibri-common/components/MissingResourceAlert'; @@ -184,7 +184,13 @@ CurrentTryOverview, MissingResourceAlert, }, - mixins: [commonCoreStrings, responsiveWindowMixin], + mixins: [commonCoreStrings], + setup() { + const { windowIsSmall } = useKResponsiveWindow(); + return { + windowIsSmall, + }; + }, props: { // Unique identifier of the item for the report // this will be used to filter for previous tries diff --git a/kolibri/core/assets/src/views/MultiPaneLayout.vue b/kolibri/core/assets/src/views/MultiPaneLayout.vue index de0c7d7942a..1fcdb4083d5 100644 --- a/kolibri/core/assets/src/views/MultiPaneLayout.vue +++ b/kolibri/core/assets/src/views/MultiPaneLayout.vue @@ -58,12 +58,18 @@