Skip to content

Commit

Permalink
Some codes are missed when I committed last night
Browse files Browse the repository at this point in the history
  • Loading branch information
eunmeeyi committed Apr 10, 2015
1 parent 41ce564 commit fcc44c4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/scripts/components/App.jsx
Expand Up @@ -300,6 +300,7 @@ var App = React.createClass({
{list.stdntGroupDescr}
</span>
<span className="adv-Advisee-studentGroupDetail">
{list.activeDescription} {list.effectiveDateDescription}
</span>
</p>
);
Expand All @@ -323,18 +324,22 @@ var App = React.createClass({
</span>
{list.serviceIndicatorDescr} - {list.reasonDescr}
</span>
<div className="adv-Advisee-serviceIndicatorDetails">
{this.renderAdviseeServiceIndicatorDetail({title: "Start Term" , item: list.startTermDescr})}
{this.renderAdviseeServiceIndicatorDetail({title: "End Term" , item: list.endTermDescr})}
{this.renderAdviseeServiceIndicatorDetail({title: "Start Date" , item: list.startDate})}
{this.renderAdviseeServiceIndicatorDetail({title: "End Date" , item: list.endDate})}
</div>
</p> );
</p>
);
},
renderAdviseeServiceIndicatorDetail: function(detail) {
return (
<dl className="adv-Advisee-serviceIndicatorDetail">
<dt className="adv-Advisee-serviceIndicatorDetailTitle">
{detail.title}
</dt>
<dd className="adv-Advisee-serviceIndicatorDetailItem">
{detail.item}
</dd>
</dl>
Expand Down
2 changes: 2 additions & 0 deletions src/scripts/components/Tabs/components/Tabs.js
Expand Up @@ -99,6 +99,8 @@ module.exports = React.createClass({
el = el.concat(getDescendants(child));
})
}
// Added by Eunmee Yi on 2015/04/09
// For debugging
//if (!!component && !!component.type) {
/*
if (!!component && !!component.type && !!component.type.displayName) {
Expand Down

0 comments on commit fcc44c4

Please sign in to comment.