From 404efc24d4727c9014b4b39848ca72ec7b984b05 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 16 Nov 2021 14:04:00 +0100 Subject: fix(preview): proper image scaling --- components/Sidebar/OrgImage.tsx | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to 'components/Sidebar') diff --git a/components/Sidebar/OrgImage.tsx b/components/Sidebar/OrgImage.tsx index 60bcdfb..b146c43 100644 --- a/components/Sidebar/OrgImage.tsx +++ b/components/Sidebar/OrgImage.tsx @@ -1,6 +1,7 @@ import React, { useEffect, useState } from 'react' import Image from 'next/image' import path from 'path' +import { Container } from '@chakra-ui/react' //import '../../../public/placeholder.png' export interface OrgImageProps { @@ -32,7 +33,7 @@ export const OrgImage = (props: OrgImageProps) => { if (src.replaceAll(/(http)?.*/g, '$1')) { console.log(src.replaceAll(/(http)?.*/g, '$1')) return ( - + ) } @@ -44,13 +45,15 @@ export const OrgImage = (props: OrgImageProps) => { const encodedPath = encodeURIComponent(encodeURIComponent(fullPath)) return ( - + + + ) } -- cgit v1.2.3