fix: improve "created by" and "updated by" information display
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
994 994 "accessTokenValidity": "Gültigkeit der Zugriffstoken", 995 995 "acronym": "Akronym", 996 996 "addMeAsContributor": "Mich als Beitragszahler hinzufügen", 997 "additionalInformation": "general.label.additionalInformation", changed this line in version 3 of the diff
71 72 this.updatedDate = undefined; 72 73 this.updatedWho = undefined; 73 74 } 75 } 74 76 75 getParam(): object { 76 return { 77 creationDate: this.creationDate, 78 creationWho: this.creationWho, 79 updatedDate: this.updatedDate, 80 updatedWho: this.updatedWho, 81 }; 82 } 77 class FormComponentFormDefinition extends BaseFormDefinition { changed this line in version 2 of the diff
18 templateUrl: "./shared-button-info-creation.presentational.html", 19 styleUrls: ["./shared-button-info-creation.presentational.scss"], 20 selector: "dlcm-shared-additional-information-panel", 21 templateUrl: "./shared-additional-information-panel.presentational.html", 22 styleUrls: ["./shared-additional-information-panel.presentational.scss"], 20 23 changeDetection: ChangeDetectionStrategy.OnPush, 21 24 }) 22 export class SharedButtonInfoCreationPresentational extends SharedAbstractPresentational { 25 export class SharedAdditionalInformationPanelPresentational<TResourceModel extends BaseResource> extends SharedAbstractPresentational { 23 26 creationDate: string | undefined; 24 27 creationWho: string | undefined; 25 28 updatedDate: string | undefined; 26 29 updatedWho: string | undefined; 27 30 messageToTranslate: string | undefined; 28 31 32 formDefinition: FormComponentFormDefinition = new FormComponentFormDefinition(); changed this line in version 2 of the diff
added 1 commit
- 16b7e989 - fix: improve "created by" and "updated by" information display
added 1 commit
- 2fd210ad - fix: improve "created by" and "updated by" information display
Please register or sign in to reply