Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix done for camel case and no data message #373

Merged
merged 3 commits into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions src/app/manage-learn/project/add-file/add-file.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,6 @@ export class AddFilePage implements OnInit {
// this.project.status = statusType.submitted;
this.update('submit');
}, 0)
this.router.navigate([`${RouterLinks.PROJECT}/${RouterLinks.DETAILS}`], {
queryParams: {
projectId: this.project._id,
programId: this.project.programId,
solutionId: this.project.solutionId,
}, replaceUrl: true
});
this.location.back()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</div>
<ion-list *ngIf="result.length === 0">
<div class="text-center noDataMsg">
<div class="m-10-15"> <b> {{ 'EMPTY_SEARCH_RESULTS' | translate }}</b></div>
<div class="m-10-15"> <b> {{ 'NO_DATA_FOUND' | translate }}</b></div>
<div class="m-10-15">
{{'FRMELEMNTS_MSG_NO_DATA_FOR_LOCAL_SEARCH' | translate:{'entity': data.entityType} }}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="flex-dc d-flex flex-basis-1">
<div class="d-flex flex-ai-center flex-jc-space-between">
<div class="title w-90 sb--card__title" [class.ellipsis]="ellipsis">
{{ title | titlecase }} <span *ngIf="code">
{{ title }} <span *ngIf="code">
, {{code}}
</span>
</div>
Expand Down