summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'usecaseui-portal/src/app')
-rw-r--r--usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html2
-rw-r--r--usecaseui-portal/src/app/components/customer/customer.component.ts2
-rw-r--r--usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts4
-rw-r--r--usecaseui-portal/src/app/services/services-list/services-list.component.ts1
4 files changed, 6 insertions, 3 deletions
diff --git a/usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html b/usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html
index c7eae608..1a1a2a46 100644
--- a/usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html
+++ b/usecaseui-portal/src/app/ccvpn-network/ccvpn-network.component.html
@@ -33,7 +33,7 @@
</h2>
</div>
<div class="no-network" *ngIf="nonetwork">
- <img src="assets/images/no-network available.png" alt="No network available">
+ <img src="assets/images/no-network-available.png" alt="No network available">
<p>No network available</p>
</div>
</div>
diff --git a/usecaseui-portal/src/app/components/customer/customer.component.ts b/usecaseui-portal/src/app/components/customer/customer.component.ts
index 8a84e1b6..51486dbf 100644
--- a/usecaseui-portal/src/app/components/customer/customer.component.ts
+++ b/usecaseui-portal/src/app/components/customer/customer.component.ts
@@ -94,7 +94,7 @@ export class CustomerComponent implements OnInit {
normal: {
position: 'center',
show: false,
- formatter: ' {b|{b}:{d}%} ',
+ formatter: ' {b|{b}:{c}%} ',
backgroundColor: 'rgba(51,51,51,0.9)',
borderColor: 'rgba(51,51,51,0.9)',
borderWidth: 1,
diff --git a/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts b/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts
index dc8566e0..13300eda 100644
--- a/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts
+++ b/usecaseui-portal/src/app/components/e2e-creation/e2e-creation.component.ts
@@ -102,11 +102,13 @@ export class E2eCreationComponent implements OnInit {
console.log(this.templateParameters);
console.log(this.roote2e)
}else if(type == "ns"){
- if(typeof data["model"]=='string'){
+ if(data["model"]!=undefined && typeof data["model"]=='string'){
this.nsTemplateParameters = JSON.parse(data["model"]);
+ console.log(data["model"]);
}else{
this.nsTemplateParameters = data;
}
+ console.log(this.nsTemplateParameters);
this.nsTemplateParameters["inputs2"] = [];
let inputs = this.nsTemplateParameters.inputs;
for(let key in inputs){
diff --git a/usecaseui-portal/src/app/services/services-list/services-list.component.ts b/usecaseui-portal/src/app/services/services-list/services-list.component.ts
index 1cf8cb98..06323fac 100644
--- a/usecaseui-portal/src/app/services/services-list/services-list.component.ts
+++ b/usecaseui-portal/src/app/services/services-list/services-list.component.ts
@@ -227,6 +227,7 @@ export class ServicesListComponent implements OnInit {
handleCancel(): void {
// console.log('Button cancel clicked!');
this.isVisible = false;
+ this.temParametersTips = false;
}