File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ Dates should be in`YYYY-MM-DD` format and versions are in [semantic versioning](
88### Fixed
99
1010- Improved error messages when data isn't visible to a user.
11+ - Don't use short names in drop downs. They don't match filter and don't have obvious meaning.
1112
1213### Maintenance
1314
Original file line number Diff line number Diff line change 3737{/ snippet }
3838
3939{#if role === undefined }<Oops inline text ="Unknown role" />{:else }<Link
40- title ={role !== null && role . short . length > 0 ? role .title : undefined }
40+ title ={role !== null ? role .title : undefined }
4141 to ={role
4242 ? ` /org/${Organization .getPath (org )}/role/${path } `
4343 : ` /org/${Organization .getPath (org )}/roles ` }
4444 kind =" role"
45- >{role
46- ? role .short .length > 0
47- ? role .short [0 ].replace (/ ([A-Z ] + )/ g , ' $1' ).trim ()
48- : role .title
49- : ' roles' }{#snippet action ()}{@render children ?.()}{/ snippet }</Link
45+ >{role ? role .title : ' roles' }{#snippet action ()}{@render children ?.()}{/ snippet }</Link
5046 >{/if }
You can’t perform that action at this time.
0 commit comments