Skip to content

Commit

Permalink
Remove superfluous table cell from model validation table (Issue #204)
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Mar 30, 2018
1 parent 500f70f commit 7fb72ea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cairis/web/dist/js/cairis/modelValidate.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ function validateModel() {
}

function appendResults(vr){
$("#theValidationResults").append('<tr class="mv-rows"><td>' + vr.theLabel +'</td><td>' + vr.theMessage + '</td><td></tr>');
$("#theValidationResults").append('<tr class="mv-rows"><td>' + vr.theLabel +'</td><td>' + vr.theMessage + '</td></tr>');
}
9 changes: 8 additions & 1 deletion docs/validation.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
Model Validation
================

CAIRIS has the ability to validate models for a given environment based on potential design problems. The model validation checks currently supported are as follows:
CAIRIS has the ability to validate models for a given environment based on potential design problems.

To validate a current CAIRIS model, click on the Models/Validate menu and select the environment to check the CAIRIS model for.

.. figure:: MVForm.jpg
:alt: Model Validation results

The model validation checks currently supported are as follows:

======================================= =======================================================================================================
Check Description
Expand Down

0 comments on commit 7fb72ea

Please sign in to comment.