Fix raid layout selector label bug
This commit is contained in:
@@ -88,7 +88,7 @@ export default function RaidLayoutSelectorModal({
|
||||
className="flex flex-row"
|
||||
>
|
||||
<input
|
||||
id={`raidLayoutModal${modalId}`}
|
||||
id={`raidLayoutModal${raidLayout.raidLayoutId?.replaceAll("-", "")}${modalId}`}
|
||||
type="radio"
|
||||
name="raidLayoutId"
|
||||
value={raidLayout.raidLayoutId}
|
||||
@@ -98,7 +98,7 @@ export default function RaidLayoutSelectorModal({
|
||||
/>
|
||||
<label
|
||||
className="ml-2"
|
||||
htmlFor={`raidLayoutModal${modalId}`}
|
||||
htmlFor={`raidLayoutModal${raidLayout.raidLayoutId?.replaceAll("-", "")}${modalId}`}
|
||||
>
|
||||
{raidLayout.raidLayoutName}
|
||||
</label>
|
||||
|
||||
Reference in New Issue
Block a user