Dependency type label render broken. Shows · instead of · between dependency type and abbreviation.
CSS Reference:
.TaskDependencyRenderHelpers-dependencyTypeSelectItemAbbreviation:before {
content: "·";
}
UTF-8 middle dot (·, U+00B7) decoded as Latin-1. Classic Mojibake. Stylesheet served or compiled with wrong charset.
Fix: Serve CSS with Content-Type: text/css; charset=utf-8 or replace literal char with escaped unicode \00B7 in content value.
Repro: Open any task with dependency. Look at dependency label. See · where dot should be.
@lpb - Can you reproduce? If so, are you able to move this to that category?

