Compare commits

..

No commits in common. "602dca6ee67ca1f0ea1a287910c6261ecf5726a6" and "59951fa1357f9deb89d09a28a35334a7c5d86b1f" have entirely different histories.

4 changed files with 4 additions and 5 deletions

View File

@ -54,7 +54,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById("my-richText");
myRichText.innerHTML = res?.data?.data?.data?.content || "";
myRichText.innerHTML = res?.data?.data?.content || "";
}
}
});

View File

@ -55,8 +55,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById("my-richText");
console.log(res?.data?.data?.data?.content,res);
myRichText.innerHTML = res?.data?.data?.data?.content || "";
myRichText.innerHTML = res?.data?.data?.content || "";
}
}
});

View File

@ -41,7 +41,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById('my-richText')
myRichText.innerHTML = res?.data?.data?.data?.content || "";
myRichText.innerHTML = res?.data?.data?.content || "";
}
}
})

View File

@ -43,7 +43,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById('my-richText')
myRichText.innerHTML = res?.data?.data?.data?.content || "";
myRichText.innerHTML = res?.data?.data?.content || "";
}
}
})