fix(fastapi): fix comment edit image sources

These were using the old comment image sources. Slipped in
due to cache and not checking without cache.

Fixed them to use src="/static/images/...".

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-11-18 16:43:10 -08:00
parent dbe5cb4a33
commit 7739b2178e
No known key found for this signature in database
GPG key ID: F7E46DED420788F3
2 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
function add_busy_indicator(sibling) {
const img = document.createElement('img');
img.src = "/images/ajax-loader.gif";
img.src = "/static/images/ajax-loader.gif";
img.classList.add('ajax-loader');
img.style.height = 11;
img.style.width = 16;