Devices with access restrictions list those restrictions in their examination description (#37712)
This commit is contained in:
@@ -132,7 +132,7 @@ namespace Content.Shared.Localizations
|
||||
<= 0 => string.Empty,
|
||||
1 => list[0],
|
||||
2 => $"{list[0]} or {list[1]}",
|
||||
_ => $"{string.Join(" or ", list)}"
|
||||
_ => $"{string.Join(", ", list.GetRange(0, list.Count - 1))}, or {list[^1]}"
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user