mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-29 18:52:19 +00:00
Restyle missing model warning dialog (#1354)
* Restyle missing model dialog * nit * nit * nit * nit
This commit is contained in:
@@ -46,10 +46,14 @@ const onUnmaximize = () => {
|
||||
maximized.value = false
|
||||
}
|
||||
|
||||
const contentProps = computed(() => ({
|
||||
...dialogStore.props,
|
||||
maximized: maximized.value
|
||||
}))
|
||||
const contentProps = computed(() =>
|
||||
maximizable.value
|
||||
? {
|
||||
...dialogStore.props,
|
||||
maximized: maximized.value
|
||||
}
|
||||
: dialogStore.props
|
||||
)
|
||||
|
||||
const headerId = `dialog-${Math.random().toString(36).substr(2, 9)}`
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user