added version to mdm golden resource tag (#4820)

Co-authored-by: Long Ma <long@smilecdr.com>
This commit is contained in:
longma1 2023-05-05 10:41:52 -06:00 committed by GitHub
parent b33263d469
commit 9af24adc3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,4 @@
---
type: fix
issue: 4812
title: "The tag being added on golden resources does not have a version, might as well add one."

View File

@ -126,7 +126,8 @@ public final class MdmResourceUtil {
tag.setSystem(theSystem); tag.setSystem(theSystem);
tag.setCode(theCode); tag.setCode(theCode);
tag.setDisplay(theDisplay); tag.setDisplay(theDisplay);
tag.setUserSelected(false);
tag.setVersion("1");
} }
return theGoldenResource; return theGoldenResource;
} }