Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EUSM: Erroneous Character When Mission is Edited #1182

Open
samkanga opened this issue Dec 16, 2022 · 0 comments
Open

EUSM: Erroneous Character When Mission is Edited #1182

samkanga opened this issue Dec 16, 2022 · 0 comments

Comments

@samkanga
Copy link

An issue has been identified on EUSM stage where whenever the plan is updated the goal comparator appends amp; to it.

The following change is required to resolve the issue:

{
				"id": "complete_service_point_check",
				"description": "Complete check for a particular service point (100%) within the Jurisdiction",
				"priority": "medium-priority",
				"target": [
					{
						"measure": "Percent of service points checked",
						"detail": {
							"detailQuantity": {
								"value": 100.0,
								"comparator": ">", ****
								"unit": "Percent"
							}
						},
						"due": "2022-12-23"
					}
				]
			}

to

{
				"id": "complete_service_point_check",
				"description": "Complete check for a particular service point (100%) within the Jurisdiction",
				"priority": "medium-priority",
				"target": [
					{
						"measure": "Percent of service points checked",
						"detail": {
							"detailQuantity": {
								"value": 100.0,
								"comparator": ">",  *******
								"unit": "Percent"
							}
						},
						"due": "2022-12-23"
					}
				]
			}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant