diff --git a/frontend/summary/summaryTable/evidenceProfileTable/EvidenceForm.js b/frontend/summary/summaryTable/evidenceProfileTable/EvidenceForm.js index 1002a01968..43e8d3819b 100644 --- a/frontend/summary/summaryTable/evidenceProfileTable/EvidenceForm.js +++ b/frontend/summary/summaryTable/evidenceProfileTable/EvidenceForm.js @@ -69,17 +69,17 @@ const EvidenceForm = observer(props => { /> - Factors that decrease certainty + Factors that increase certainty - Factors that increase certainty + Factors that decrease certainty @@ -159,17 +159,17 @@ const EvidenceForm = observer(props => { diff --git a/frontend/summary/summaryTable/evidenceProfileTable/Table.js b/frontend/summary/summaryTable/evidenceProfileTable/Table.js index 4c055379bf..a2597a5f73 100644 --- a/frontend/summary/summaryTable/evidenceProfileTable/Table.js +++ b/frontend/summary/summaryTable/evidenceProfileTable/Table.js @@ -27,8 +27,8 @@ const subTitleStyle = {backgroundColor: "#f5f5f5"},
- + {index == 0 || rowSpan == 1 ? ( 1 ? rowSpan : null}> Studies Summary of key findings - Factors that decrease certainty Factors that increase certainty + Factors that decrease certainty Evidence Synthesis Judgment(s) {summary_judgement.hide_content ? null : } diff --git a/hawc/static/css/pagedown.css b/hawc/static/css/pagedown.css deleted file mode 100644 index 77edcf87f3..0000000000 --- a/hawc/static/css/pagedown.css +++ /dev/null @@ -1,14 +0,0 @@ -.wmd-panel { - margin-left: 0%; - margin-right: 0%; - width: 100%; -} -.wmd-input { - background-color: white; - border: 1px solid DarkGray; -} - -.wmd-preview { - margin-top: 10px; - background-color: white; -} diff --git a/hawc/tools/tables/ept.py b/hawc/tools/tables/ept.py index 59eea8721e..141ce031d0 100644 --- a/hawc/tools/tables/ept.py +++ b/hawc/tools/tables/ept.py @@ -234,7 +234,7 @@ def to_docx(self, parser: QuillParser, block): class CertainFactorsCell(FactorsCell): - column: int = 3 + column: int = 2 @property def factor_types(self): @@ -242,7 +242,7 @@ def factor_types(self): class UncertainFactorsCell(FactorsCell): - column: int = 2 + column: int = 3 @property def factor_types(self): @@ -326,8 +326,8 @@ def _set_cells(self): self.cells = [ self.evidence, self.summary, - self.uncertain_factors, self.certain_factors, + self.uncertain_factors, self.judgement, ] @@ -438,10 +438,10 @@ def column_headers(self): True, 1, 1, 1, 1, tag_wrapper("Summary of key findings", "p", "strong") ), GenericCell.parse_args( - True, 1, 2, 1, 1, tag_wrapper("Factors that decrease certainty", "p", "strong") + True, 1, 2, 1, 1, tag_wrapper("Factors that increase certainty", "p", "strong") ), GenericCell.parse_args( - True, 1, 3, 1, 1, tag_wrapper("Factors that increase certainty", "p", "strong") + True, 1, 3, 1, 1, tag_wrapper("Factors that decrease certainty", "p", "strong") ), GenericCell.parse_args( True, 1, 4, 1, 1, tag_wrapper("Evidence Synthesis Judgment(s)", "p", "strong")