Draft editor
Cluster @ClusterId · generation @GenerationId
@if (_tab == "equipment") {
}
else if (_tab == "uns") {
}
else if (_tab == "namespaces") {
}
else if (_tab == "drivers") {
}
else if (_tab == "acls") {
}
else if (_tab == "scripts") {
}
else if (_tab == "virtual-tags") {
}
else if (_tab == "scripted-alarms") {
}
Validation
@if (_validating) {
Checking…
}
else if (_errors.Count == 0) {
No validation errors — safe to publish.
}
else
{
@_errors.Count error@(_errors.Count == 1 ? "" : "s")
@foreach (var e in _errors)
{
-
@e.Code
@e.Message
@if (!string.IsNullOrEmpty(e.Context)) {
@e.Context
}
}
}
@if (_publishError is not null) {
}