mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-13 22:55:56 +08:00
fix: adding the key requires double enter before it gets added as label key after the first label (#6296)
This commit is contained in:
parent
dc5917db01
commit
e623c92615
@ -138,6 +138,9 @@ function LabelSelect({
|
|||||||
if (e.key === 'Enter' || e.code === 'Enter' || e.key === ':') {
|
if (e.key === 'Enter' || e.code === 'Enter' || e.key === ':') {
|
||||||
send('NEXT');
|
send('NEXT');
|
||||||
}
|
}
|
||||||
|
if (state.value === 'Idle') {
|
||||||
|
send('NEXT');
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
bordered={false}
|
bordered={false}
|
||||||
value={currentVal as never}
|
value={currentVal as never}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user