mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18: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;
|
||||
}
|
||||
${css}
|
||||
`]);
|
||||
return URL.createObjectURL(blob, { type: 'text/css' });
|
||||
`], { type: 'text/css' });
|
||||
return URL.createObjectURL(blob);
|
||||
}
|
||||
|
||||
componentWillReceiveProps (nextProps) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue