Skip to content

Commit

Permalink
Design improvements - v1.0.1
Browse files Browse the repository at this point in the history
- Clear input field when adding allocation
- Spinner while checking/saving backup
  • Loading branch information
90N45-d3v committed Mar 5, 2023
1 parent d262b1c commit 1b6bca4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<div style="display: flex; justify-content: center; align-items: center;">
<span *ngIf="!backup" style="display: flex; justify-content: center; align-items: center; height: 10vh;">
<mat-spinner diameter="25"></mat-spinner>
</span>
<mat-card style="min-width: 40%;" *ngIf="backup">
<mat-card-title style="text-align: center;">DNSspoof</mat-card-title>
<mat-divider></mat-divider>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export class dnsspoofComponent implements OnInit {
if (response != "ok") {
this.error = response;
} else {
this.userIP = "";
this.userDomain = "";
this.get();
}
this.isAdding = false;
Expand Down
2 changes: 1 addition & 1 deletion DNSspoof/projects/dnsspoof/src/module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dnsspoof",
"title": "DNSspoof",
"description": "Spoof DNS records",
"version": "1.0.0",
"version": "1.0.1",
"author": "90N45",
"firmware_required": "1.0.0",
"devices": ["wifipineapplemk7"]
Expand Down

0 comments on commit 1b6bca4

Please sign in to comment.