Co-authored-by: Grahame Grieve <grahameg@gmail.ccom>
This commit is contained in:
Grahame Grieve 2022-09-12 23:16:06 +08:00 committed by GitHub
parent a8dbcd4f72
commit 2cef00dfb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -666,6 +666,9 @@ public class ValueSetRenderer extends TerminologyRenderer {
}
private <T extends Resource> String getCsRef(T cs) {
if (cs == null) {
return "?cs-n?";
}
String ref = (String) cs.getUserData("filename");
if (ref == null)
ref = (String) cs.getUserData("path");