From d48a728fd0c90829670f4b7bba3ea885aa2978f7 Mon Sep 17 00:00:00 2001 From: akshatdalton Date: Fri, 14 May 2021 19:36:58 +0000 Subject: [PATCH] templates: Move bot_avatar_row to settings/. Since templates for settings UI should be in `static/templates/settings`. --- static/js/settings_bots.js | 2 +- static/templates/{ => settings}/bot_avatar_row.hbs | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename static/templates/{ => settings}/bot_avatar_row.hbs (100%) diff --git a/static/js/settings_bots.js b/static/js/settings_bots.js index c981557cd8..a255657136 100644 --- a/static/js/settings_bots.js +++ b/static/js/settings_bots.js @@ -2,7 +2,7 @@ import ClipboardJS from "clipboard"; import $ from "jquery"; import _ from "lodash"; -import render_bot_avatar_row from "../templates/bot_avatar_row.hbs"; +import render_bot_avatar_row from "../templates/settings/bot_avatar_row.hbs"; import render_edit_bot from "../templates/edit_bot.hbs"; import render_settings_edit_embedded_bot_service from "../templates/settings/edit_embedded_bot_service.hbs"; import render_settings_edit_outgoing_webhook_service from "../templates/settings/edit_outgoing_webhook_service.hbs"; diff --git a/static/templates/bot_avatar_row.hbs b/static/templates/settings/bot_avatar_row.hbs similarity index 100% rename from static/templates/bot_avatar_row.hbs rename to static/templates/settings/bot_avatar_row.hbs