Merge branch 'master' into master

This commit is contained in:
Helder Sepulveda
2017-12-09 11:23:43 -05:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -73,7 +73,7 @@ const ThrownErrorItem = ( { error, jumpToLine } ) => {
<span style={{ whiteSpace: "pre-line", "maxWidth": "100%" }}> <span style={{ whiteSpace: "pre-line", "maxWidth": "100%" }}>
{ error.get("message") } { error.get("message") }
</span> </span>
<div> <div style={{ "text-decoration": "underline", "cursor": "pointer" }}>
{ errorLine && jumpToLine ? <a onClick={jumpToLine.bind(null, errorLine)}>Jump to line { errorLine }</a> : null } { errorLine && jumpToLine ? <a onClick={jumpToLine.bind(null, errorLine)}>Jump to line { errorLine }</a> : null }
</div> </div>
</div> </div>

View File

@@ -11,6 +11,7 @@
select select
{ {
min-width: 130px; min-width: 130px;
max-width: 100%;
} }
} }