Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
426b9921
Commit
426b9921
authored
Mar 15, 2022
by
El Mghazli Yacine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated tslib
parent
51362d9c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
111 additions
and
58 deletions
+111
-58
ngx/package-lock.json
ngx/package-lock.json
+101
-46
ngx/package.json
ngx/package.json
+1
-1
ngx/src/app/app.module.ts
ngx/src/app/app.module.ts
+6
-5
ngx/src/app/components/nav/nav.component.html
ngx/src/app/components/nav/nav.component.html
+3
-6
No files found.
ngx/package-lock.json
View file @
426b9921
This diff is collapsed.
Click to expand it.
ngx/package.json
View file @
426b9921
...
...
@@ -22,7 +22,7 @@
"@angular/platform-browser-dynamic"
:
"~13.2.6"
,
"@angular/router"
:
"~13.2.6"
,
"rxjs"
:
"^6.6.6"
,
"tslib"
:
"^2.
0.0
"
,
"tslib"
:
"^2.
3.1
"
,
"zone.js"
:
"^0.11.4"
},
"devDependencies"
:
{
...
...
ngx/src/app/app.module.ts
View file @
426b9921
...
...
@@ -25,13 +25,13 @@ import { AppComponent } from './app.component';
import
{
ErrorDialogComponent
}
from
'
./components/error-dialog/error-dialog.component
'
;
import
{
InterceptorProviders
}
from
'
./interceptors/interceptors
'
;
import
{
LoadingService
}
from
'
./services/loading.service
'
;
import
{
CommandsComponent
}
from
'
./components/commands/commands.component
'
;
import
{
CommandsApi
}
from
'
./api/commands.api
'
;
import
{
MatSidenavModule
}
from
'
@angular/material/sidenav
'
;
import
{
BrowserModule
}
from
'
@angular/platform-browser
'
;
import
{
BrowserAnimationsModule
}
from
'
@angular/platform-browser/animations
'
;
import
{
AppRoutingModule
}
from
'
./app-routing.module
'
;
import
{
ReactiveFormsModule
}
from
'
@angular/forms
'
;
import
{
CommandsComponent
}
from
'
./components/commands/commands.component
'
;
import
{
CommandsApi
}
from
'
./api/commands.api
'
;
import
{
MatSidenavModule
}
from
'
@angular/material/sidenav
'
;
@
NgModule
({
declarations
:
[
...
...
@@ -40,6 +40,7 @@ import { MatSidenavModule } from '@angular/material/sidenav';
ErrorDialogComponent
],
imports
:
[
MatSidenavModule
,
BrowserModule
,
AppRoutingModule
,
BrowserAnimationsModule
,
...
...
@@ -56,7 +57,6 @@ import { MatSidenavModule } from '@angular/material/sidenav';
MatDatepickerModule
,
MatNativeDateModule
,
MatToolbarModule
,
MatSidenavModule
,
MatListModule
,
MatTableModule
,
MatPaginatorModule
,
...
...
@@ -66,7 +66,8 @@ import { MatSidenavModule } from '@angular/material/sidenav';
MatSlideToggleModule
,
MatGridListModule
,
MatCardModule
,
MatMenuModule
MatMenuModule
,
MatSidenavModule
,
],
providers
:
[
// services
...
...
ngx/src/app/components/nav/nav.component.html
View file @
426b9921
...
...
@@ -9,6 +9,7 @@
<mat-sidenav-content>
<mat-toolbar>
<mat-toolbar-row
fxLayout=
"row"
fxLayoutAlign=
"space-between center"
>
<ng-template
#not_loading
>
...
...
@@ -17,20 +18,16 @@
</button>
<h1>
OAI SoftModem
</h1>
</ng-template>
<ng-template
#loading
>
<mat-progress-spinner
mode=
"indeterminate"
diameter=
"40"
>
</mat-progress-spinner>
</ng-template>
<div
fxLayout=
"row"
fxLayoutAlign=
"start center"
>
<ng-container
*ngIf=
"loadingService.isLoading$ | async; then loading; else not_loading"
>
</ng-container>
</div>
<ng-container
fxLayout=
"row"
>
<a
id=
"email"
>
{{ userService.email }}
</a>
<button
mat-raised-button
color=
"warn"
href=
"#"
(click)=
"userService.logout()"
>
logout
</button>
</ng-container>
</mat-toolbar-row>
</mat-toolbar>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment