updated
This commit is contained in:
parent
9049141e3a
commit
8713e5018f
|
@ -1 +1,2 @@
|
||||||
VITE_API_URL=https://localhost
|
VITE_API_URL=https://localhost
|
||||||
|
VITE_IMAGE_URL=https://image.localhost
|
||||||
|
|
|
@ -80,7 +80,8 @@ const getUrl = (config: OpenAPIConfig, options: ApiRequestOptions): string => {
|
||||||
return substring
|
return substring
|
||||||
})
|
})
|
||||||
|
|
||||||
const url = config.BASE + path
|
let url = config.BASE + path
|
||||||
|
url = url.replace(/^http:\/\//i, 'https://')
|
||||||
return options.query ? url + getQueryString(options.query) : url
|
return options.query ? url + getQueryString(options.query) : url
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -112,7 +112,7 @@ function AboutUsTable() {
|
||||||
{parse(aboutUs.description) || "N/A"}
|
{parse(aboutUs.description) || "N/A"}
|
||||||
</Td>
|
</Td>
|
||||||
<Td>
|
<Td>
|
||||||
<img src={"image"+import.meta.env.VITE_API_URL+"/"+aboutUs.image} width="100px" height="100px" />
|
<img src={import.meta.env.VITE_IMAGE_URL+"/"+aboutUs.image} width="100px" height="100px" />
|
||||||
</Td>
|
</Td>
|
||||||
<Td isTruncated maxWidth="10px">
|
<Td isTruncated maxWidth="10px">
|
||||||
{aboutUs.index}
|
{aboutUs.index}
|
||||||
|
|
Loading…
Reference in New Issue