Aurvion / llama.cpp /tools /ui /src /lib /utils /image-error-fallback.ts
OmnipotentFool's picture
Add files using upload-large-folder tool
6b9d0d8 verified
Raw
History Blame Contribute Delete
398 Bytes
/**
* Simplified HTML fallback for external images that fail to load.
* Displays a centered message with a link to open the image in a new tab.
*/
export function getImageErrorFallbackHtml(src: string): string {
return `<div class="image-error-content">
<span>Image cannot be displayed</span>
<a href="${src}" target="_blank" rel="noopener noreferrer">(open link)</a>
</div>`;
}