3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00

presetup: fix include/exclude dropdown not working

This commit is contained in:
Dragory 2021-01-20 22:20:20 +02:00
parent be06985ad7
commit 0757cc368a
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -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>