The following items list TOSCA elements contained in
TOSCA's
Definitions
@@ -50,8 +50,8 @@
Imports
WSDLs
-
diff --git a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.html b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.html
index d42f523a2a..7efa83fb9c 100644
--- a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.html
+++ b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.html
@@ -68,6 +68,7 @@
diff --git a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.ts b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.ts
index efe688aa86..abf46bfdc8 100644
--- a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.ts
+++ b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entity.component.ts
@@ -77,7 +77,8 @@ export class EntityComponent implements OnInit {
}
this.showButtons = this.toscaType !== ToscaTypes.Imports;
- this.showTargetAllocationButton = !this.configurationService.isYaml() && this.toscaType === ToscaTypes.ServiceTemplate;
+ this.showTargetAllocationButton = !this.configurationService.isYaml() && this.toscaType === ToscaTypes.ServiceTemplate
+ && this.configurationService.configuration.features.cloudAllocation;
if (this.maxWidth === 380) {
this.containerSizeClass = 'smallContainer';
diff --git a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.css b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.css
index ca0b6fdfe3..8c60722db4 100644
--- a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.css
+++ b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.css
@@ -34,11 +34,11 @@
}
.largeContainer {
- max-width: 274px;
+ max-width: 318px;
}
.middleContainerSize {
- max-width: 214px;
+ max-width: 258px;
}
.smallContainer {
diff --git a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.ts b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.ts
index 53201329f3..e31444d3fa 100644
--- a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.ts
+++ b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/entityContainer/entityContainer.component.ts
@@ -173,7 +173,7 @@ export class EntityContainerComponent implements OnInit {
// Thus, we need to subtract 1 from all version instances.
let childrenCount = this.data.versionInstances.length - 1;
- // If we show the differences dialog, we add the size of the dialog.
+ // If we show the differences' dialog, we add the size of the dialog.
let children = 0;
let directChildrenShowingTheirContent = 0;
let containersShowingDiff = 0;
diff --git a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/section.component.html b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/section.component.html
index 7e28d7ba36..b4020d5053 100644
--- a/org.eclipse.winery.frontends/app/tosca-management/src/app/section/section.component.html
+++ b/org.eclipse.winery.frontends/app/tosca-management/src/app/section/section.component.html
@@ -39,12 +39,20 @@