mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 05:58:41 -09:00
Correct css Blob type (#508)
This commit is contained in:
parent
7be0730e99
commit
220b29c6c7
1 changed files with 2 additions and 2 deletions
|
|
@ -139,8 +139,8 @@ export default class Term extends Component {
|
||||||
border-width: 1px !important;
|
border-width: 1px !important;
|
||||||
}
|
}
|
||||||
${css}
|
${css}
|
||||||
`]);
|
`], { type: 'text/css' });
|
||||||
return URL.createObjectURL(blob, { type: 'text/css' });
|
return URL.createObjectURL(blob);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps (nextProps) {
|
componentWillReceiveProps (nextProps) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue