presetup: fix include/exclude dropdown not working
This commit is contained in:
parent
be06985ad7
commit
0757cc368a
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ export function LogChannels({ logChannels, setLogChannels }: Props) {
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
Mode:
|
Mode:
|
||||||
<select value={logChannel.includeExclude}>
|
<select value={logChannel.includeExclude} onChange={e => setIncludeExclude(index, e.target.value as LogChannel["includeExclude"])}>
|
||||||
<option value={"include"}>Include</option>
|
<option value={"include"}>Include</option>
|
||||||
<option value={"exclude"}>Exclude</option>
|
<option value={"exclude"}>Exclude</option>
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Add table
Reference in a new issue