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;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.normalText {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
|
|
@ -133,7 +133,7 @@ var StoryData = React.createClass({
|
|||
return (<div>
|
||||
<h1>{this.state.data.title}</h1>
|
||||
Assignee: {this.state.data.assignee}
|
||||
<div class="well">
|
||||
<div class="well normalText">
|
||||
{this.state.data.content}
|
||||
</div>
|
||||
<StoryTaskTable tasks={this.state.data.tasks || []}
|
||||
|
|
Loading…
Reference in a new issue