mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
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>
|
||||
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={"exclude"}>Exclude</option>
|
||||
</select>
|
||||
|
|
Loading…
Add table
Reference in a new issue