Compare commits

...

1 commit

Author SHA1 Message Date
Dessalines
8ba574ce28 Fix banner. Fixes #466 2021-12-22 11:32:08 -05:00
2 changed files with 6 additions and 2 deletions

View file

@ -14,7 +14,9 @@ export class BannerIconHeader extends Component<BannerIconHeaderProps, any> {
render() { render() {
return ( return (
<div class="position-relative mb-2"> <div class="position-relative mb-2">
{this.props.banner && <PictrsImage src={this.props.banner} alt="" />} {this.props.banner && (
<PictrsImage src={this.props.banner} banner alt="" />
)}
{this.props.icon && ( {this.props.icon && (
<PictrsImage <PictrsImage
src={this.props.icon} src={this.props.icon}

View file

@ -8,6 +8,7 @@ interface PictrsImageProps {
src: string; src: string;
alt?: string; alt?: string;
icon?: boolean; icon?: boolean;
banner?: boolean;
thumbnail?: boolean; thumbnail?: boolean;
nsfw?: boolean; nsfw?: boolean;
iconOverlay?: boolean; iconOverlay?: boolean;
@ -30,8 +31,9 @@ export class PictrsImage extends Component<PictrsImageProps, any> {
loading="lazy" loading="lazy"
className={` className={`
${!this.props.icon && !this.props.iconOverlay && "img-fluid "} ${!this.props.icon && !this.props.iconOverlay && "img-fluid "}
${this.props.banner && "banner "}
${ ${
this.props.thumbnail && !this.props.icon this.props.thumbnail && !this.props.icon && !this.props.banner
? "thumbnail rounded " ? "thumbnail rounded "
: "img-expanded " : "img-expanded "
} }