diff --git a/frontend/src/Interface.svelte b/frontend/src/Interface.svelte
index 4271d4b0f2..239415aa83 100644
--- a/frontend/src/Interface.svelte
+++ b/frontend/src/Interface.svelte
@@ -271,7 +271,7 @@
{/if}
{#each output_components as output_component, i}
- {#if output_values[i] !== null}
+ {#if output_values[i] !== null && output_component.name !== "state"}
{
} else {
config.static_src = "https://gradio.s3-us-west-2.amazonaws.com/PIP_VERSION";
}
+ if (config.css) {
+ let style = document.createElement("style");
+ style.innerHTML = config.css;
+ document.head.appendChild(style);
+ }
if (config.detail === "Not authenticated") {
new Login({
target: target,
diff --git a/gradio.egg-info/PKG-INFO b/gradio.egg-info/PKG-INFO
index 6fbaf09d0e..79bbfc690e 100644
--- a/gradio.egg-info/PKG-INFO
+++ b/gradio.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: gradio
-Version: 2.8.0b3
+Version: 2.8.0b5
Summary: Python library for easily interacting with trained machine learning models
Home-page: https://github.com/gradio-app/gradio-UI
Author: Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq
diff --git a/gradio/version.txt b/gradio/version.txt
index 293e236de1..ec33f4c153 100644
--- a/gradio/version.txt
+++ b/gradio/version.txt
@@ -1 +1 @@
-2.8.0b3
\ No newline at end of file
+2.8.0b5
\ No newline at end of file
diff --git a/setup.py b/setup.py
index 6c2632fa0b..8119a42ad1 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ except ImportError:
setup(
name="gradio",
- version="2.8.0b3",
+ version="2.8.0b5",
include_package_data=True,
description="Python library for easily interacting with trained machine learning models",
author="Abubakar Abid, Ali Abid, Ali Abdalla, Dawood Khan, Ahsen Khaliq",