Compare commits

..

No commits in common. "4a166496a23d088e120ea1f89f225da94f240c6f" and "cb1d4cdb7f8d73885c3c82fa8a27e36c18ff0cfa" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ blockquote, button, fieldset, iframe {border: 0;}
cite, em, u, address, i {font-style: normal;} cite, em, u, address, i {font-style: normal;}
img {border: 0; vertical-align: top;} img {border: 0; vertical-align: top;}
hr, legend {position: absolute; left: -9999px; top: -9999px;} hr, legend {position: absolute; left: -9999px; top: -9999px;}
/*caption {text-indent: -9999px; font-size: 0;}*/ caption {text-indent: -9999px; font-size: 0;}
li {list-style: none;} li {list-style: none;}
table {width: 100%; table-layout: fixed; border-collapse: collapse;} table {width: 100%; table-layout: fixed; border-collapse: collapse;}
a:link, a:visited, a:hover, a:active {text-decoration: none;} a:link, a:visited, a:hover, a:active {text-decoration: none;}

View File

@ -141,7 +141,7 @@ function CodeViewer(props) {
item.full_content = item.full_content.replace('<table ', '<table class="table table-bordered "') item.full_content = item.full_content.replace('<table ', '<table class="table table-bordered "')
} }
if(item.error_cd !== null){ if(item.error_cd !== null){
item.full_content = "<div class='errorText'>"+item.error_cd+"</div>"+item.full_content; item.full_content += "<div class='errorText'>"+item.error_cd+"</div>";
} }
detailTag.push( detailTag.push(
<VwDiv depth={item.cont_level} isTitle={isTitle} id={item.cont_type_cd} dangerouslySetInnerHTML={ {__html: item.full_content} }></VwDiv> <VwDiv depth={item.cont_level} isTitle={isTitle} id={item.cont_type_cd} dangerouslySetInnerHTML={ {__html: item.full_content} }></VwDiv>