v-edit-dialog containing a text fieldVuetify 0.15.7
If a cell is empty the edit dialog activator should fill the entire thing.
The dialog activator is only as wide as the text, so it ends up being 0px
Duplicate of https://github.com/vuetifyjs/vuetify/issues/1282
Ah thanks, I didn't see that one. I'll leave this open because I believe a sensible default is needed.
This really seems more like a bug than an "enhancement".
When the inline-editor's activator is based on the size of a text value then even non-empty but short values, like "i", makes opening the inline editor very non-material-ui friendly. It becomes an extremely small target to click or touch. Then in the case of an empty value, the activator is simply gone.
IMHO, the entire cell should activate the inline editor by default.
I have not found more components using the small-dialog style, so I'm using this css code as a workaround
div.small-dialog {
width: 100%
}
Most helpful comment
I have not found more components using the small-dialog style, so I'm using this css code as a workaround
div.small-dialog { width: 100% }