Commit a539653f authored by Ajoymaity's avatar Ajoymaity
Browse files

Issue #SB-28602 fix: Fixed content card ribbon title

No related merge requests found
Showing with 2 additions and 8 deletions
+2 -8
{
"name": "@project-sunbird/common-consumption-v9",
"version": "4.7.0",
"version": "4.7.1",
"repository": {
"type": "git",
"url": "git+https://github.com/Sunbird-Ed/SunbirdEd-consumption-ngcomponents.git"
......
......@@ -26,7 +26,7 @@
<div class="sb--card__svg-area">
<img [src]="svgToDisplay" alt=""/>
</div>
<div class="sb--card__type" *ngIf="content?.contentType">{{cardType}}</div>
<div class="sb--card__type" *ngIf="content?.primaryCategory">{{content?.primaryCategory}}</div>
</div>
<!-- card mobile view details -->
......
......@@ -28,16 +28,10 @@ export class LibraryCardV2Component implements OnInit, AfterViewInit {
@Output() cardClick: EventEmitter<ICardClick> = new EventEmitter();
@Output() menuClick: EventEmitter<ICardClick> = new EventEmitter();
cardType = '';
get LibraryCardTypes() { return LibraryCardTypes; }
ngOnInit() {
this.cardType = this.content.contentType;
if (this.content.primaryCategory && this.content.primaryCategory.toLowerCase() !== 'course' &&
this.content.trackable && this.content.trackable.enabled === 'Yes') {
this.cardType = 'Digital Textbook';
}
this.fetchSvg();
this.splitGradeMedium();
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment