commit
90f710c7e8
|
@ -81,10 +81,13 @@ export class CoreGradesCoursePage implements AfterViewInit, OnDestroy {
|
|||
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreGradesCoursesSource, []),
|
||||
);
|
||||
break;
|
||||
case 'participants':
|
||||
case 'participants': {
|
||||
const search = CoreNavigator.getRouteParam('search');
|
||||
|
||||
this.swipeManager = new CoreGradesCourseParticipantsSwipeManager(
|
||||
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreUserParticipantsSource, [this.courseId]),
|
||||
CoreRoutedItemsManagerSourcesTracker.getOrCreateSource(CoreUserParticipantsSource, [this.courseId, search]),
|
||||
);
|
||||
}
|
||||
break;
|
||||
}
|
||||
} catch (error) {
|
||||
|
|
|
@ -31,7 +31,6 @@ import { CoreRoutedItemsManagerSourcesTracker } from '@classes/items-management/
|
|||
@Component({
|
||||
selector: 'page-core-user-participants',
|
||||
templateUrl: 'participants.html',
|
||||
styleUrls: ['participants.scss'],
|
||||
})
|
||||
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