fix:bug generate article
This commit is contained in:
parent
d76b224a72
commit
b91e8d249d
|
|
@ -879,7 +879,7 @@ export default function FormAudio() {
|
|||
{isGeneratedArticle && (
|
||||
<div className="mt-3 pb-0 flex flex-row ">
|
||||
{articleIds.map((id: string, index: number) => (
|
||||
<button
|
||||
<p
|
||||
key={index}
|
||||
className={`mr-3 px-3 py-2 rounded-md ${
|
||||
selectedArticleId === id
|
||||
|
|
@ -889,7 +889,7 @@ export default function FormAudio() {
|
|||
onClick={() => handleArticleIdClick(id)}
|
||||
>
|
||||
{id}
|
||||
</button>
|
||||
</p>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -890,7 +890,7 @@ export default function FormImage() {
|
|||
{isGeneratedArticle && (
|
||||
<div className="mt-3 pb-0 flex flex-row">
|
||||
{articleIds.map((id: string, index: number) => (
|
||||
<button
|
||||
<p
|
||||
key={index}
|
||||
className={`mr-3 px-3 py-2 rounded-md ${
|
||||
selectedArticleId === id
|
||||
|
|
@ -900,7 +900,7 @@ export default function FormImage() {
|
|||
onClick={() => handleArticleIdClick(id)}
|
||||
>
|
||||
{id}
|
||||
</button>
|
||||
</p>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -879,7 +879,7 @@ export default function FormTeks() {
|
|||
{isGeneratedArticle && (
|
||||
<div className="mt-3 pb-0 flex flex-row ">
|
||||
{articleIds.map((id: string, index: number) => (
|
||||
<button
|
||||
<p
|
||||
key={index}
|
||||
className={`mr-3 px-3 py-2 rounded-md ${
|
||||
selectedArticleId === id
|
||||
|
|
@ -889,7 +889,7 @@ export default function FormTeks() {
|
|||
onClick={() => handleArticleIdClick(id)}
|
||||
>
|
||||
{id}
|
||||
</button>
|
||||
</p>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -879,7 +879,7 @@ export default function FormVideo() {
|
|||
{isGeneratedArticle && (
|
||||
<div className="mt-3 pb-0 flex flex-row ">
|
||||
{articleIds.map((id: string, index: number) => (
|
||||
<button
|
||||
<p
|
||||
key={index}
|
||||
className={`mr-3 px-3 py-2 rounded-md ${
|
||||
selectedArticleId === id
|
||||
|
|
@ -889,7 +889,7 @@ export default function FormVideo() {
|
|||
onClick={() => handleArticleIdClick(id)}
|
||||
>
|
||||
{id}
|
||||
</button>
|
||||
</p>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Reference in New Issue