+ @if (_attrsLoading) {
}
+ else if (_attrsError is not null) {
@_attrsError }
+ else if (_attrs is null) {
Pick an object. }
+ else if (_attrs.Count == 0) {
No attributes. }
+ else
+ {
+ @foreach (var a in _attrs)
+ {
+ var sel = _attributeName == a.Name ? "bg-primary-subtle" : "";
+
SelectAttributeAsync(a))">
+ @a.Name
+ @a.DriverDataType@(a.IsArray ? "[]" : "") · @a.SecurityClass
+
+ }
+ }
+