Skip to content

Commit

Permalink
[#11442] Release 8.2.1 (#11443)
Browse files Browse the repository at this point in the history
  • Loading branch information
wkurniawan07 committed Oct 10, 2021
1 parent 97f48df commit d38d3a1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ exports[`InstructorSearchPageComponent should snap with a search key 1`] = `
isSearching="false"
searchParams={[Function Object]}
searchService={[Function SearchService]}
searchWarningDisplayed="false"
statusMessageService={[Function StatusMessageService]}
studentsListRowTables={[Function Array]}
>
Expand Down Expand Up @@ -78,7 +77,6 @@ exports[`InstructorSearchPageComponent should snap with a student table 1`] = `
isSearching="false"
searchParams={[Function Object]}
searchService={[Function SearchService]}
searchWarningDisplayed="false"
statusMessageService={[Function StatusMessageService]}
studentsListRowTables={[Function Array]}
>
Expand Down Expand Up @@ -608,7 +606,6 @@ exports[`InstructorSearchPageComponent should snap with default fields 1`] = `
isSearching="false"
searchParams={[Function Object]}
searchService={[Function SearchService]}
searchWarningDisplayed="false"
statusMessageService={[Function StatusMessageService]}
studentsListRowTables={[Function Array]}
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
<div class="text-muted" style="margin: 10px 0;" *ngIf="searchWarningDisplayed">
NOTE: We are currently upgrading the search infrastructure of the system.
During this period, you may find your search results not up-to-date, particularly for older data.
<br>
The upgrade is expected to finish by Aug 16, 2021. We apologize for any inconvenience caused.
</div>
<tm-instructor-search-bar (searched)="search()" [(searchParams)]="searchParams"></tm-instructor-search-bar>

<div *tmIsLoading="isSearching">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { forkJoin, Observable, of } from 'rxjs';
import { finalize, map, mergeMap } from 'rxjs/operators';
import { environment } from '../../../environments/environment';
import { CourseService } from '../../../services/course.service';
import { InstructorSearchResult, SearchService } from '../../../services/search.service';
import { StatusMessageService } from '../../../services/status-message.service';
Expand Down Expand Up @@ -29,7 +28,6 @@ export class InstructorSearchPageComponent implements OnInit {
};
studentsListRowTables: SearchStudentsListRowTable[] = [];
isSearching: boolean = false;
searchWarningDisplayed: boolean = !!environment.searchWarningDisplayed;

constructor(
private statusMessageService: StatusMessageService,
Expand Down
19 changes: 19 additions & 0 deletions src/web/data/developers.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@
"name": "Brian Coveney",
"username": "BrianCoveney"
},
{
"name": "Brock Jenken",
"username": "brockjenken"
},
{
"name": "Bruno Mendes",
"username": "brnomendes"
Expand Down Expand Up @@ -624,6 +628,9 @@
"name": "Griffin Hines",
"username": "GriffinHines"
},
{
"username": "Grunler"
},
{
"multiple": true,
"name": "Guan Xiaokang",
Expand Down Expand Up @@ -664,6 +671,9 @@
"name": "Hector Aguilar",
"username": "ah91086"
},
{
"username": "heeenkie"
},
{
"major": true,
"name": "Hirday Gupta",
Expand Down Expand Up @@ -964,6 +974,9 @@
"name": "Lee Lunn",
"username": "leelunn"
},
{
"username": "LeeBadal"
},
{
"name": "Leonard Hio",
"username": "leonardhml"
Expand Down Expand Up @@ -1064,6 +1077,9 @@
"name": "Marlon Calvo",
"username": "marloncalvo"
},
{
"username": "MatildaAR"
},
{
"name": "Matteus Hast",
"username": "matteushast"
Expand Down Expand Up @@ -1230,6 +1246,9 @@
"name": "Olha Hnatik",
"username": "OlhaHn"
},
{
"username": "Olle251"
},
{
"name": "Onkar Shedge",
"username": "onkarshedge"
Expand Down
5 changes: 0 additions & 5 deletions src/web/environments/config.template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,4 @@ export const config: any = {
*/
maintenance: false,

/**
* Indicates whether search feature warning should be displayed.
*/
searchWarningDisplayed: false,

};

0 comments on commit d38d3a1

Please sign in to comment.