Merge pull request #4088 from dpalou/MOBILE-4470
MOBILE-4470 workshop: Fix switch phase option overrides the appmain
commit
96fb3fc81f
|
@ -21,7 +21,7 @@
|
|||
</p>
|
||||
</ion-label>
|
||||
</ion-item-divider>
|
||||
<ion-item class="ion-text-wrap" *ngIf="phase.switchUrl" [href]="phase.switchUrl" [detail]="false">
|
||||
<ion-item class="ion-text-wrap" *ngIf="phase.switchUrl" [href]="phase.switchUrl" [detail]="false" core-link [capture]="false">
|
||||
<ion-icon slot="start" name="fas-right-left" aria-hidden="true" />
|
||||
<ion-label>
|
||||
<p>{{ 'addon.mod_workshop.switchphase' + phase.code | translate }}</p>
|
||||
|
|
|
@ -43,7 +43,6 @@ import { CoreError } from '@classes/errors/error';
|
|||
import { CoreCourseHelper } from '@features/course/services/course-helper';
|
||||
import { CoreCourseModuleDelegate } from '@features/course/services/module-delegate';
|
||||
import { CoreCourseAccess } from '@features/course/services/course-options-delegate';
|
||||
import { CorePlatform } from '@services/platform';
|
||||
|
||||
export const GRADES_PAGE_NAME = 'grades';
|
||||
export const GRADES_PARTICIPANTS_PAGE_NAME = 'participant-grades';
|
||||
|
@ -105,8 +104,8 @@ export class CoreGradesHelperProvider {
|
|||
row.rowclass += itemNameColumn.class.indexOf('hidden') >= 0 ? ' hidden' : '';
|
||||
row.rowclass += itemNameColumn.class.indexOf('dimmed_text') >= 0 ? ' dimmed_text' : '';
|
||||
|
||||
if (!useLegacyLayout && !CorePlatform.isAutomated()) {
|
||||
// Activity name is only included in the webservice response from the latest version when behat is not running.
|
||||
if (!useLegacyLayout) {
|
||||
// Remove the "title" of the row (activity name, 'Manual item', 'Aggregation', etc.).
|
||||
content = content.replace(/<span[^>]+>.+?<\/span>/i, '');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue