Skip to content
Snippets Groups Projects
Commit 160bde9e authored by Sebastian Bergandy's avatar Sebastian Bergandy :keyboard:
Browse files

Merge branch 'OZG-6185-fix-attachment-list-orientation' into 'main'

OZG-6185 fix attachments list orientation

See merge request !75
parents 3321d5e1 9270c2bd
Branches
Tags
1 merge request!75OZG-6185 fix attachments list orientation
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
data-test-class="binary-file-container-in-bescheid" data-test-class="binary-file-container-in-bescheid"
[resource]="bescheid" [resource]="bescheid"
[linkRel]="bescheidLinkRel.ATTACHMENTS" [linkRel]="bescheidLinkRel.ATTACHMENTS"
[listOrientation]="BinaryFileListOrientation.VERTICAL"
></alfa-binary-file-list-container> ></alfa-binary-file-list-container>
</ods-bescheid-wrapper> </ods-bescheid-wrapper>
</div> </div>
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
*/ */
import { BescheidLinkRel, BescheidListLinkRel, BescheidListResource, BescheidStatus } from '@alfa-client/bescheid-shared'; import { BescheidLinkRel, BescheidListLinkRel, BescheidListResource, BescheidStatus } from '@alfa-client/bescheid-shared';
import { Component, Input } from '@angular/core'; import { Component, Input } from '@angular/core';
import { BinaryFileListOrientation } from '../../../../../binary-file/src/lib/directive/binary-file-list-orientation/binary-file-list-orientation.directive';
@Component({ @Component({
selector: 'alfa-bescheid-list-in-vorgang', selector: 'alfa-bescheid-list-in-vorgang',
...@@ -32,6 +33,8 @@ import { Component, Input } from '@angular/core'; ...@@ -32,6 +33,8 @@ import { Component, Input } from '@angular/core';
export class BescheidListInVorgangComponent { export class BescheidListInVorgangComponent {
@Input() public bescheidList: BescheidListResource; @Input() public bescheidList: BescheidListResource;
public readonly BinaryFileListOrientation = BinaryFileListOrientation;
public readonly bescheidListLinkRel = BescheidListLinkRel; public readonly bescheidListLinkRel = BescheidListLinkRel;
public readonly bescheidLinkRel = BescheidLinkRel; public readonly bescheidLinkRel = BescheidLinkRel;
public readonly bescheidStatus = BescheidStatus; public readonly bescheidStatus = BescheidStatus;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment