Fix enum message using configuration rather than protoname in json output
All checks were successful
release-nightly / macos (push) Successful in 2m8s
release-nightly / web-demo (push) Successful in 4m16s

This commit is contained in:
2025-05-13 21:01:44 +09:30
parent af613c3d37
commit cdeccf33b3

View File

@@ -77,7 +77,7 @@ import { StringFieldComponent } from '../string-field/string-field.component';
<mat-select [(value)]="value">
<mat-option>None</mat-option>
@for(option of enumConfiguration().options; track option) {
<mat-option [value]="option">{{
<mat-option [value]="option.protoName">{{
option.friendlyName || option.protoName
}}</mat-option>
}