mirror of
https://github.com/wgh136/nysoure.git
synced 2025-12-16 15:51:14 +00:00
fix: null check
This commit is contained in:
@@ -156,7 +156,7 @@ export default function EditResourcePage() {
|
|||||||
/>
|
/>
|
||||||
<div className={"h-4"}></div>
|
<div className={"h-4"}></div>
|
||||||
<p className={"my-1"}>{t("Alternative Titles")}</p>
|
<p className={"my-1"}>{t("Alternative Titles")}</p>
|
||||||
{altTitles.map((title, index) => {
|
{altTitles && altTitles.map((title, index) => {
|
||||||
return (
|
return (
|
||||||
<div key={index} className={"flex items-center my-2"}>
|
<div key={index} className={"flex items-center my-2"}>
|
||||||
<input
|
<input
|
||||||
|
|||||||
Reference in New Issue
Block a user