diff --git a/templates/zephyr/settings.html b/templates/zephyr/settings.html
index 6e70810175..13671ce21d 100644
--- a/templates/zephyr/settings.html
+++ b/templates/zephyr/settings.html
@@ -130,8 +130,6 @@
Your bots
-
diff --git a/zephyr/static/js/settings.js b/zephyr/static/js/settings.js
index 57d30d1aba..24862ae1af 100644
--- a/zephyr/static/js/settings.js
+++ b/zephyr/static/js/settings.js
@@ -15,7 +15,8 @@ function add_bot_row(name, email, avatar_url, api_key) {
$('').text(email),
$(' | ').html(avatar_cell),
$(' | ').text(api_key));
- $('#create_bot_row').before(row);
+ $('#bots_table tr:last').after(row);
+ $('#bots_table').show();
}
function is_local_part(value, element) {
diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css
index 5e471bd9c8..0920c32cbf 100644
--- a/zephyr/static/styles/zephyr.css
+++ b/zephyr/static/styles/zephyr.css
@@ -1808,6 +1808,10 @@ li.expanded_subject {
overflow: hidden;
}
+#bots_table {
+ display: none;
+}
+
#create_bot_name {
width: 85%;
}
@@ -1829,14 +1833,6 @@ li.expanded_subject {
font-size: 85%;
}
-.create_bot_control {
- vertical-align: middle;
-}
-
-#create_bot_row input {
- margin: 0;
-}
-
#onboarding-header {
font-size: 16px;
font-weight: bold;
|