feat: Award column can now show either reference or description

This commit is contained in:
2026-07-07 20:23:18 +02:00
parent 39f095ae75
commit daf38554a5
5 changed files with 37 additions and 5 deletions
+2
View File
@@ -250,6 +250,7 @@ export namespace award {
valid_from?: string;
valid_to?: string;
alias?: string;
ref_display?: string;
type?: string;
field: string;
match_by?: string;
@@ -289,6 +290,7 @@ export namespace award {
this.valid_from = source["valid_from"];
this.valid_to = source["valid_to"];
this.alias = source["alias"];
this.ref_display = source["ref_display"];
this.type = source["type"];
this.field = source["field"];
this.match_by = source["match_by"];