mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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:
parent
dbe5cb4a33
commit
7739b2178e
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue