Skip to content

Commit

Permalink
Merge pull request #75 from soumyaprasadrana/work_new
Browse files Browse the repository at this point in the history
Work new
  • Loading branch information
soumyaprasadrana committed May 28, 2023
2 parents c27fdcf + d68b0ec commit e458643
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<i class="{{appIcon}}" area-label="false"></i>
</div>

Lunching {{appName}}{{dots}}
Launching {{appName}}{{dots}}


</div>
Expand Down
6 changes: 3 additions & 3 deletions src/app/public/tools/tools-spa/tools-spa.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class ToolsSpaComponent implements OnInit {
if (
metadata[metadata.length - 1][
metadata[metadata.length - 1].length - 1
].cardTitle != "Font Awsome Icons"
].cardTitle != "Font Awesome Icons"
) {
//item
if (!metadata[i][j].cardIconClass)
Expand All @@ -52,7 +52,7 @@ export class ToolsSpaComponent implements OnInit {
}
}
}
/*Adding Internal apps */
/*Adding Internal apps
console.log(
metadata[metadata.length - 1][metadata[metadata.length - 1].length - 1]
.cardTitle
Expand All @@ -71,7 +71,7 @@ export class ToolsSpaComponent implements OnInit {
badgeIcon: "fa fa-font ",
cardTextClamp: 3,
});
}
}*/
return metadata;
}
ngOnInit(): void {}
Expand Down
2 changes: 1 addition & 1 deletion src/app/public/widget/footer/footer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<!-- Footer -->
<footer class="card-footer fixed-bottom"><div><p>
<!--Made with ❤ by <a href="https://in.linkedin.com/in/soumya-prasad-rana-5a7a6b70 ">Soumya</a>-->
VM Assignment Portal 2.0.6 © 2023 All rights reserved.
VM Assignment Portal 2.0.7 © 2023 All rights reserved.
</p></div></footer>

3 changes: 3 additions & 0 deletions src/app/public/widget/nav/side-nav/side-nav.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
<mat-icon>perm_identity</mat-icon> <span class="ms-1">{{loggedUser.name | uppercase }}</span>


</a>
<a mat-list-item (click)="versionInfo()">
<mat-icon>info</mat-icon> About
</a>
<a mat-list-item (click)="onSidenavClose()">
<mat-icon>close</mat-icon> Close
Expand Down
13 changes: 13 additions & 0 deletions src/app/public/widget/nav/side-nav/side-nav.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,17 @@ export class SideNavComponent implements OnInit {
theme: theme,
});
}
versionInfo(){
this.openAlertDialog({type:"info",message:` <div class="modal-body">
<p class="mb-0">Version: 2.0.7</p>
<p class="mb-0">Build Number: 207-28052023</p>
<p >Build Date: May 28, 2023</p>
<p>
<!--Made with ❤ by <a href="https://in.linkedin.com/in/soumya-prasad-rana-5a7a6b70 ">Soumya</a>-->
VM Assignment Portal 2.0.7 © 2023 All rights reserved.
</p>
</div>`});

}
}

0 comments on commit e458643

Please sign in to comment.