mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2026-05-15 16:21:29 +00:00
feat: redesign password vault interface for pro users
- Complete UI/UX redesign of vault module - Enhanced security interface - Pro feature improvements - Better password management workflow
This commit is contained in:
parent
cdc2e0cabf
commit
746711fa24
4 changed files with 632 additions and 335 deletions
|
|
@ -435,6 +435,14 @@ export class VaultComponent implements OnInit {
|
|||
|
||||
|
||||
|
||||
copyToClipboard(text: string) {
|
||||
navigator.clipboard.writeText(text).then(() => {
|
||||
this.show_toast('Success', 'Password copied to clipboard', 'success');
|
||||
}).catch(() => {
|
||||
this.show_toast('Error', 'Failed to copy password', 'danger');
|
||||
});
|
||||
}
|
||||
|
||||
logger(item: any) {
|
||||
console.dir(item);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue