@if (data?.descriptor; as descriptor) { @if (hasDescription(descriptor)) {
{{ descriptor.description }}
} @if (hasDefaultValue(descriptor)) {
Default Value: {{ descriptor.defaultValue }}
}
Expression language scope: {{ descriptor.expressionLanguageScope }}
Sensitive property: {{ descriptor.sensitive }}
@if ( descriptor.identifiesControllerService && descriptor.identifiesControllerServiceBundle && identifiesControllerService(descriptor) ) {
Requires Controller Service: 
} } @if (data?.propertyHistory; as propertyHistory) {
History
    @for (previousValue of propertyHistory.previousValues; track previousValue) {
  • {{ previousValue.previousValue }} - {{ previousValue.timestamp }} ({{ previousValue.userIdentity }})
  • }
}