Fix style for story content
This commit is contained in:
parent
c1eed7136c
commit
3f5bb27b47
2 changed files with 5 additions and 1 deletions
|
@ -6,3 +6,7 @@ button.nothing {
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.normalText {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
|
@ -133,7 +133,7 @@ var StoryData = React.createClass({
|
||||||
return (<div>
|
return (<div>
|
||||||
<h1>{this.state.data.title}</h1>
|
<h1>{this.state.data.title}</h1>
|
||||||
Assignee: {this.state.data.assignee}
|
Assignee: {this.state.data.assignee}
|
||||||
<div class="well">
|
<div class="well normalText">
|
||||||
{this.state.data.content}
|
{this.state.data.content}
|
||||||
</div>
|
</div>
|
||||||
<StoryTaskTable tasks={this.state.data.tasks || []}
|
<StoryTaskTable tasks={this.state.data.tasks || []}
|
||||||
|
|
Loading…
Reference in a new issue