Skip to content
Snippets Groups Projects
Commit 7bceca09 authored by Stéphane Dervaux's avatar Stéphane Dervaux
Browse files

Better alert for shacl validation

parent b8082bb0
No related branches found
No related tags found
No related merge requests found
......@@ -1357,7 +1357,7 @@ public class MainApp extends Application implements Launcher {
long timeElapsed = (long)((finish - start)*0.000001);
Platform.runLater(() -> {
Alert SHACLValidationEndMessage = new Alert(AlertType.INFORMATION);
Alert SHACLValidationEndMessage = r.success() ? new Alert(AlertType.CONFIRMATION) : new Alert(AlertType.WARNING);
SHACLValidationEndMessage.setResizable(true);
SHACLValidationEndMessage.setTitle("SHACL validation ended");
SHACLValidationEndMessage.setHeaderText("REPORT");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment