feature/ysCha #8

Merged
ysCha merged 5 commits from feature/ysCha into dev 2025-03-27 09:58:44 +09:00
Showing only changes of commit b136bc213c - Show all commits

View File

@ -87,7 +87,7 @@ export default function QSelectBox({
<ul className="select-item-wrap">
{options?.length > 0 &&
options?.map((option, index) => (
<li key={option.id || index} className="select-item" onClick={() => handleClickSelectOption(option)}>
<li key={option.id + '_' + index} className="select-item" onClick={() => handleClickSelectOption(option)}>
<button key={option.id + 'btn'}>{showKey !== '' ? option[showKey] : option.name}</button>
</li>
))}