MOBILE-3640 core: Lint line length fixes
parent
880a5cf4b8
commit
21fd1f00d7
|
@ -55,7 +55,8 @@
|
||||||
<form *ngIf="survey && !survey.surveydone && !hasOffline && questions && questions.length">
|
<form *ngIf="survey && !survey.surveydone && !hasOffline && questions && questions.length">
|
||||||
|
|
||||||
<ion-grid class="ion-no-padding ion-text-wrap">
|
<ion-grid class="ion-no-padding ion-text-wrap">
|
||||||
<ng-container *ngFor="let question of questions; let questionIndex=index; let isEven=even;" class="ion-no-padding ion-text-wrap">
|
<ng-container *ngFor="let question of questions; let questionIndex=index; let isEven=even;"
|
||||||
|
class="ion-no-padding ion-text-wrap">
|
||||||
<!-- Parent question (Category header) -->
|
<!-- Parent question (Category header) -->
|
||||||
<ng-container *ngIf="question.multiArray?.length" >
|
<ng-container *ngIf="question.multiArray?.length" >
|
||||||
<h3 class="ion-padding-horizontal" [class.ion-padding-top]="questionIndex == 1">{{ question.text }}</h3>
|
<h3 class="ion-padding-horizontal" [class.ion-padding-top]="questionIndex == 1">{{ question.text }}</h3>
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
<ion-buttons slot="start">
|
<ion-buttons slot="start">
|
||||||
<ion-back-button [attr.aria-label]="'core.back' | translate"></ion-back-button>
|
<ion-back-button [attr.aria-label]="'core.back' | translate"></ion-back-button>
|
||||||
</ion-buttons>
|
</ion-buttons>
|
||||||
<ion-title><core-format-text [text]="title" contextLevel="module" [contextInstanceId]="module.id"></core-format-text></ion-title>
|
<ion-title>
|
||||||
|
<core-format-text [text]="title" contextLevel="module" [contextInstanceId]="module.id"></core-format-text>
|
||||||
|
</ion-title>
|
||||||
|
|
||||||
<ion-buttons slot="end">
|
<ion-buttons slot="end">
|
||||||
<!-- The buttons defined by the component will be added in here. -->
|
<!-- The buttons defined by the component will be added in here. -->
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
</ion-note>
|
</ion-note>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
</ion-list>
|
</ion-list>
|
||||||
<core-empty-box *ngIf="ratings.length == 0" icon="fas-star-half-alt" [message]="'core.rating.noratings' | translate"></core-empty-box>
|
<core-empty-box *ngIf="ratings.length == 0" icon="fas-star-half-alt" [message]="'core.rating.noratings' | translate">
|
||||||
|
</core-empty-box>
|
||||||
</core-loading>
|
</core-loading>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|
Loading…
Reference in New Issue