commit
90f710c7e8
|
@ -81,10 +81,13 @@ export class CoreGradesCoursePage implements AfterViewInit, OnDestroy {
|
||||||
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreGradesCoursesSource, []),
|
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreGradesCoursesSource, []),
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case 'participants':
|
case 'participants': {
|
||||||
|
const search = CoreNavigator.getRouteParam('search');
|
||||||
|
|
||||||
this.swipeManager = new CoreGradesCourseParticipantsSwipeManager(
|
this.swipeManager = new CoreGradesCourseParticipantsSwipeManager(
|
||||||
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreUserParticipantsSource, [this.courseId]),
|
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreUserParticipantsSource, [this.courseId, search]),
|
||||||
);
|
);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
|
@ -31,7 +31,6 @@ import { CoreRoutedItemsManagerSourcesTracker } from '@classes/items-management/
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'page-core-user-participants',
|
selector: 'page-core-user-participants',
|
||||||
templateUrl: 'participants.html',
|
templateUrl: 'participants.html',
|
||||||
styleUrls: ['participants.scss'],
|
|
||||||
})
|
})
|
||||||
export class CoreUserParticipantsPage implements OnInit, AfterViewInit, OnDestroy {
|
export class CoreUserParticipantsPage implements OnInit, AfterViewInit, OnDestroy {
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
:host {
|
|
||||||
|
|
||||||
core-split-view {
|
|
||||||
isolation: isolate;
|
|
||||||
}
|
|
||||||
|
|
||||||
core-search-box {
|
|
||||||
position: sticky;
|
|
||||||
top: 8px;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue