mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-09 23:15:46 +01:00
🐛 Fixing zIndex when using "add to Homarr"
This commit is contained in:
@@ -110,6 +110,8 @@ export const IntegrationSelector = ({ form }: IntegrationSelectorProps) => {
|
||||
clearable
|
||||
variant="default"
|
||||
searchable
|
||||
zIndex={203}
|
||||
withinPortal
|
||||
filter={(value, item) =>
|
||||
item.label?.toLowerCase().includes(value.toLowerCase().trim()) ||
|
||||
item.description?.toLowerCase().includes(value.toLowerCase().trim())
|
||||
@@ -128,7 +130,6 @@ export const IntegrationSelector = ({ form }: IntegrationSelectorProps) => {
|
||||
form.setFieldValue('integration.properties', getNewProperties(value));
|
||||
inputProps.onChange(value);
|
||||
}}
|
||||
withinPortal
|
||||
{...inputProps}
|
||||
/>
|
||||
);
|
||||
|
||||
@@ -167,7 +167,7 @@ export default function ContainerActionBar({ selected, reload }: ContainerAction
|
||||
const containerUrl = `http://localhost:${selected[0].Ports[0].PublicPort}`;
|
||||
openContextModalGeneric<{ app: AppType; allowAppNamePropagation: boolean }>({
|
||||
modal: 'editApp',
|
||||
zIndex: 1000,
|
||||
zIndex: 202,
|
||||
innerProps: {
|
||||
app: {
|
||||
id: uuidv4(),
|
||||
|
||||
Reference in New Issue
Block a user