This is an automated email from the ASF dual-hosted git repository.
tiagobento pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git
The following commit(s) were added to refs/heads/main by this push:
new ba5de578aef kie-issues#1014: KIE Sandbox: Enabling Validation for DMN
Assets up to 1.5 (#2200)
ba5de578aef is described below
commit ba5de578aefe98d6ef11149716828f711f87bce3
Author: Yeser Amer <[email protected]>
AuthorDate: Sat Mar 16 06:37:54 2024 +0100
kie-issues#1014: KIE Sandbox: Enabling Validation for DMN Assets up to 1.5
(#2200)
---
packages/online-editor/src/editor/Validation.tsx | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/packages/online-editor/src/editor/Validation.tsx
b/packages/online-editor/src/editor/Validation.tsx
index 6e87387d04f..df88956446e 100644
--- a/packages/online-editor/src/editor/Validation.tsx
+++ b/packages/online-editor/src/editor/Validation.tsx
@@ -120,14 +120,22 @@ export function useFileValidation(
const decodedFileContent = decoder.decode(fileContent);
const dmnSpecVersion =
dmnLanguageService?.getSpecVersion(decodedFileContent);
- if (!dmnSpecVersion || (dmnSpecVersion !== "1.0" && dmnSpecVersion
!== "1.1" && dmnSpecVersion !== "1.2")) {
+ if (
+ !dmnSpecVersion ||
+ (dmnSpecVersion !== "1.0" &&
+ dmnSpecVersion !== "1.1" &&
+ dmnSpecVersion !== "1.2" &&
+ dmnSpecVersion !== "1.3" &&
+ dmnSpecVersion !== "1.4" &&
+ dmnSpecVersion !== "1.5")
+ ) {
setNotifications(i18n.terms.validation, "", [
{
type: "ALERT",
normalizedPosixPathRelativeToTheWorkspaceRoot: "",
severity: "WARNING",
message:
- "Validation checks are temporarily supported only on DMN
1.2 or below. For full access to this feature, use the Legacy DMN Editor.",
+ "Validation doesn't support this DMN version" +
dmnSpecVersion ? "(" + dmnSpecVersion + ")" : "",
},
]);
return;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]