Restore job when loading party

This commit is contained in:
Justin Edmund 2022-12-01 01:45:47 -08:00
parent 0096a49a07
commit 1cb9d6c843

View file

@ -67,7 +67,11 @@ const JobDropdown = React.forwardRef<HTMLSelectElement, Props>(
.sort((a, b) => a.order - b.order)
.map((item, i) => {
return (
<option key={i} value={item.id}>
<option
key={i}
value={item.id}
selected={item.id === props.currentJob}
>
{item.name[locale]}
</option>
)