Skip to content
This repository was archived by the owner on Oct 27, 2022. It is now read-only.

Commit 01dda3d

Browse files
author
Nick Kozlov
committed
all for today with UI
1 parent f5eaf5e commit 01dda3d

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

angular/dist/bnbbrowser/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
<link rel="stylesheet" href="styles.9b5e5c7ed5f939436c31.css"></head>
1010
<body>
1111
<app-root></app-root>
12-
<script src="runtime.741402d1d47331ce975c.js"></script><script src="polyfills-es5.7f9896f05667ed1b2b2b.js" nomodule></script><script src="polyfills.4ff4d4d37857c508ba08.js"></script><script src="scripts.c1872b03322eabb9e005.js"></script><script src="main.a945a889465afc0255ab.js"></script></body>
12+
<script src="runtime.741402d1d47331ce975c.js"></script><script src="polyfills-es5.7f9896f05667ed1b2b2b.js" nomodule></script><script src="polyfills.4ff4d4d37857c508ba08.js"></script><script src="scripts.c1872b03322eabb9e005.js"></script><script src="main.0adb2a12aa3dbcd41540.js"></script></body>
1313
</html>

angular/dist/bnbbrowser/main.a945a889465afc0255ab.js renamed to angular/dist/bnbbrowser/main.0adb2a12aa3dbcd41540.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular/src/app/app.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { HistoryComponentComponent } from './history-component/history-component
1919
import {StorageService} from "./services/storage.service";
2020
import { UnlockComponent } from './unlock/unlock.component';
2121
import { EditFormComponent } from './edit-form/edit-form.component';
22+
import { UsersListComponent } from './users-list/users-list.component';
2223

2324
@NgModule({
2425
declarations: [
@@ -31,7 +32,8 @@ import { EditFormComponent } from './edit-form/edit-form.component';
3132
ImportMnemonicComponent,
3233
HistoryComponentComponent,
3334
UnlockComponent,
34-
EditFormComponent
35+
EditFormComponent,
36+
UsersListComponent
3537
],
3638
imports: [
3739
BrowserModule,

angular/src/app/main/main.component.ts

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,10 @@ export class MainComponent {
8888
updateUsersList() {
8989
this.usersMenu = [
9090
{val: this.accountName},
91-
{val: this.accountName},
92-
{val: this.accountName},
93-
{val: this.accountName},
94-
{val: this.accountName},
95-
{val: this.accountName},
96-
{val: this.accountName},
97-
{val: this.accountName},
98-
{val: this.accountName},
99-
{val: this.accountName},
91+
{val: 'Job'},
92+
{val: 'Personal'},
93+
{val: 'Team'},
94+
{val: 'DeFi'},
10095
]
10196
}
10297

0 commit comments

Comments
 (0)