-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-7.0.0' of https://github.com/Sunbird-Ed/Sunbird…
…Ed-mobile-app into release-7.0.0_ED-4197
- Loading branch information
Showing
32 changed files
with
4,753 additions
and
4,430 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,10 @@ jobs: | |
path: coverage | ||
- run: | ||
name: install sonar scanner | ||
command: sudo npm install -g [email protected] | ||
command: | | ||
wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-5.0.1.3006-linux.zip | ||
unzip || sudo apt install unzip -y | ||
unzip sonar-scanner-cli-5.0.1.3006-linux.zip | ||
- run: | ||
name: Run SonarScan | ||
command: sonar-scanner | ||
command: sonar-scanner-5.0.1.3006-linux/bin/sonar-scanner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
<div class="dashlet-table-container"> | ||
<sb-dashlet [type]="'table'" [data]="DashletRowData" [config]="columnConfig" #lib> | ||
<ng-template sbTemplateRef="header" let-config> | ||
<div> | ||
<span (click)="exportCsv()" class="ad-csv-btn float-end"> | ||
<span class="ad-dw">{{'DOWNLOAD_CSV' | translate}}</span> | ||
<img src="assets/imgs/download-icon.svg" alt="download" aria-hidden="true"> | ||
</span> | ||
</div> | ||
</ng-template> | ||
</sb-dashlet> | ||
<div> | ||
<span (click)="exportCsv()" class="ad-csv-btn float-end"> | ||
<span class="ad-dw">{{'DOWNLOAD_CSV' | translate}}</span> | ||
<img src="assets/imgs/download-icon.svg" alt="download" aria-hidden="true"> | ||
</span> | ||
</div> | ||
<div style="padding-top: 1rem;"> | ||
<table class="dataTable"> | ||
<thead> | ||
<tr role="row"> | ||
<th class="sorting" *ngFor="let clmn of columnConfig?.columnConfig; let i = index" (click)="handleSort(i)">{{clmn.title}}</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr role="row" *ngFor="let data of DashletRowData?.values"> | ||
<td *ngFor="let clmn of columnConfig?.columnConfig">{{data[clmn.data]}}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/app/enrolled-course-details-page/enrolled-course-details-page.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.