Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sr/templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@ class AlgorithmIdentification extends Template {

class TrackingIdentifier extends Template {
constructor(options) {
super(options);
super();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It isn't just this one, but every Template extension (5 of them) in this appears to be wrong. Can you go through them and update the others?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nr59684 do you plan to follow up on this PR?

We very much welcome your contribution!

if (options.uid === undefined) {
throw new Error("Option 'uid' is required for TrackingIdentifier.");
}
Expand Down