diff --git a/ui-ngx/src/app/modules/home/components/vc/entity-types-version-create.component.html b/ui-ngx/src/app/modules/home/components/vc/entity-types-version-create.component.html
index 74cfe9b891..9d1192c0c9 100644
--- a/ui-ngx/src/app/modules/home/components/vc/entity-types-version-create.component.html
+++ b/ui-ngx/src/app/modules/home/components/vc/entity-types-version-create.component.html
@@ -70,7 +70,7 @@
+ formGroupName="config" style="min-height: 76px;">
{{ 'version-control.all-entities' | translate }}
diff --git a/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.ts b/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.ts
index ca0a8cbe85..8276e12d63 100644
--- a/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.ts
+++ b/ui-ngx/src/app/modules/home/components/vc/entity-versions-table.component.ts
@@ -186,7 +186,7 @@ export class EntityVersionsTableComponent extends PageComponent implements OnIni
this.popoverService.hidePopover(trigger);
} else {
const createVersionPopover = this.popoverService.displayPopover(trigger, this.renderer,
- this.viewContainerRef, EntityVersionCreateComponent, 'left', true, null,
+ this.viewContainerRef, EntityVersionCreateComponent, 'leftTop', true, null,
{
branch: this.branch,
entityId: this.entityId,
@@ -251,7 +251,7 @@ export class EntityVersionsTableComponent extends PageComponent implements OnIni
this.popoverService.hidePopover(trigger);
} else {
const diffVersionPopover = this.popoverService.displayPopover(trigger, this.renderer,
- this.viewContainerRef, EntityVersionDiffComponent, 'left', true, null,
+ this.viewContainerRef, EntityVersionDiffComponent, 'leftTop', true, null,
{
branch: this.branch,
versionName: entityVersion.name,
@@ -275,7 +275,7 @@ export class EntityVersionsTableComponent extends PageComponent implements OnIni
this.popoverService.hidePopover(trigger);
} else {
const restoreVersionPopover = this.popoverService.displayPopover(trigger, this.renderer,
- this.viewContainerRef, EntityVersionRestoreComponent, 'left', true, null,
+ this.viewContainerRef, EntityVersionRestoreComponent, 'leftTop', true, null,
{
branch: this.branch,
versionName: entityVersion.name,