1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-21 03:43:41 +00:00

add circle input for avatar

This commit is contained in:
Kyle Spearrin
2018-07-03 15:11:58 -04:00
parent 6d731e2939
commit 9cf15e37ce
5 changed files with 97 additions and 4 deletions

View File

@@ -1,11 +1,19 @@
import {
Component
Component,
OnInit,
} from '@angular/core';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-org-vault',
templateUrl: 'vault.component.html',
})
export class VaultComponent {
export class VaultComponent implements OnInit {
constructor(private route: ActivatedRoute) { }
ngOnInit() {
this.route.parent.params.subscribe(async (params) => {
});
}
}