From 220b29c6c7115da11449347ff72ca969c597889f Mon Sep 17 00:00:00 2001 From: Albin Ekblom Date: Fri, 29 Jul 2016 22:30:36 +0200 Subject: [PATCH] Correct css Blob type (#508) --- lib/components/term.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/term.js b/lib/components/term.js index 2487e75b..4066ebdf 100644 --- a/lib/components/term.js +++ b/lib/components/term.js @@ -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) {