113124: Allow opening ds-metadata-uri-values links in a new window

This commit is contained in:
Kuno Vercammen
2024-03-15 11:42:01 +01:00
parent 4c693a1294
commit badf00258c
3 changed files with 14 additions and 1 deletions

View File

@@ -37,4 +37,10 @@ export class MetadataUriValuesComponent extends MetadataValuesComponent {
* The label for this iteration of metadata values
*/
@Input() label: string;
/**
* The target attribute for the metadata links.
* Defaults to '_blank' to open links in a new window/tab.
*/
@Input() linkTarget = '_blank';
}