Skip to content

Commit

Permalink
Merge branch '3.5.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Feb 27, 2025
2 parents a10102d + 57904bd commit 9524b37
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -533,9 +533,8 @@ export class WarningsModalComponent {
}


private async createSection(type: WarningType, document: FieldDocument, fieldName?: string): Promise<WarningSection> {

console.log('pcc:', this.projectConfiguration.getCategory('Configuration'));
private async createSection(type: WarningType, document: FieldDocument,
fieldName?: string): Promise<WarningSection> {

const category: CategoryForm|undefined = this.projectConfiguration.getCategory(document.resource.category);
const section: WarningSection = { type, category };
Expand Down Expand Up @@ -587,7 +586,8 @@ export class WarningsModalComponent {
}


private fetchRelationTargets(document: FieldDocument, fieldName: string, type: WarningType): Promise<Array<Document>> {
private fetchRelationTargets(document: FieldDocument, fieldName: string,
type: WarningType): Promise<Array<Document>> {

const targetIds: string[] = type === 'invalidRelationTargets'
? intersect(
Expand Down

0 comments on commit 9524b37

Please sign in to comment.