text-generation-webui/js/update_big_picture.js
2026-03-30 19:36:03 -07:00

6 lines
181 B
JavaScript

function updateBigPicture() {
var existingElement = document.querySelector(".bigProfilePicture");
if (existingElement) {
existingElement.src = getProfilePictureUrl();
}
}