From c19ba0793dfcec299eac394c35acef5ad974e17d Mon Sep 17 00:00:00 2001 From: Pierre-Gilles Leymarie Date: Thu, 13 Jun 2024 09:56:46 +0200 Subject: [PATCH] Fix z-index issue on device.setValue scene action (#2100) --- front/src/components/device/SelectDeviceFeature.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/components/device/SelectDeviceFeature.jsx b/front/src/components/device/SelectDeviceFeature.jsx index b58b152678..fb11504e66 100644 --- a/front/src/components/device/SelectDeviceFeature.jsx +++ b/front/src/components/device/SelectDeviceFeature.jsx @@ -123,6 +123,7 @@ class SelectDeviceFeature extends Component { value={selectedOption} onChange={this.handleChange} options={deviceOptions} + styles={{ menu: base => ({ ...base, zIndex: 2 }) }} /> ); }