Skip to content

Commit

Permalink
Merge pull request #9021 from pieresimakp/pr-dev
Browse files Browse the repository at this point in the history
Fix the style box dropdown not wrapping in txt2img and img2img
  • Loading branch information
AUTOMATIC1111 authored Mar 27, 2023
2 parents 9e82896 + 68a5604 commit 955df77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ div.compact{
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.gradio-dropdown .wrap-inner.wrap-inner.wrap-inner{
.gradio-dropdown:not(.multiselect) .wrap-inner.wrap-inner.wrap-inner{
flex-wrap: unset;
}

Expand Down

17 comments on commit 955df77

@vixenius
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Broken dropdown menus..
Screenshot 2023-03-27 170542

@clementvp
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I confirm.

@THEman6989
Copy link

@THEman6989 THEman6989 commented on 955df77 Mar 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also confirm but it only happens when i use extensions

@christianKossmann2741
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, broken dropdown menus

@yin3331
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I confirm too

@pieresimakp
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that the problem does not arise from this commit. this commit simply ignores the 'wrap unset' for the multiselect dropdown

@Moordazzer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

confirm too

@JoeyLearnsToCode
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

confirm too

@a-l-e-x-d-s-9
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had this infinite loading problem 3 days ago, on the first round of the UI updates on Saturday.
I had to checkout the previous version.

@sumof2primes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

try --no-gradio-queue option

@Piscabo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How can I fix this? This is new from today...
image

@johnnybpena1989
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For me, this happens while using Chrome, but not when using FIrefox. If using my iphone, I just get an immediate "Something went wrong. Connection errored out." Message

@noonz66
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

try --no-gradio-queue option

This worked for me! thanks

@Piscabo
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--no-gradio-queue option

Worked for me too, was using Edge, but now on Chrome, still was broken... But Gradio line fixed it.

@johnnybpena1989
Copy link

@johnnybpena1989 johnnybpena1989 commented on 955df77 Mar 28, 2023 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Moordazzer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

other work around wait a moment and reload UI

@andreikok
Copy link

@andreikok andreikok commented on 955df77 Mar 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lots of errors still even when using the --no-gradio-queue. From the console, thousands of these errors;
**
file=script.js?1680134880.611927:40 Cannot set properties of null (setting 'innerHTML') TypeError: Cannot set properties of null (setting 'innerHTML')
at update_info (layerinfo.js?1680136019.707273:127:87)
at layerinfo.js?1680136019.707273:133:60
at Array.forEach ()
at update_info (layerinfo.js?1680136019.707273:133:47)
at DumpUnet.applySizeCallback (layerinfo.js?1680136019.707273:137:13)
at runCallback (file=script.js?1680134880.611927:38:9)
at file=script.js?1680134880.611927:44:31
at Array.forEach ()
at executeCallbacks (file=script.js?1680134880.611927:44:11)
at MutationObserver. (file=script.js?1680134880.611927:56:9)


Also this error;
file=script.js?1680134880.611927:40 check_gallery is not defined ReferenceError: check_gallery is not defined
at deforum.js?1680136720.8667092:20:5
at runCallback (file=script.js?1680134880.611927:38:9)
at file=script.js?1680134880.611927:44:31
at Array.forEach ()
at executeCallbacks (file=script.js?1680134880.611927:44:11)
at MutationObserver. (file=script.js?1680134880.611927:56:9)

Basically hangs the UI, with thousands of errors in the browser console. Chrome latest.

Please sign in to comment.