mirror of
https://github.com/thepaperpilot/Planar-Pioneers.git
synced 2024-11-22 16:35:42 +00:00
Fix layer.minWidth being ignored
This commit is contained in:
parent
5156193a60
commit
dc8a5fb558
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ export default defineComponent({
|
|||
tabValue.style.flexGrow = "";
|
||||
tabValue.style.flexShrink = "";
|
||||
tabValue.style.width = "";
|
||||
tabValue.style.minWidth = tabValue.style.flexBasis = `${width}px`;
|
||||
tabValue.style.minWidth = tabValue.style.flexBasis = width;
|
||||
tabValue.style.margin = "";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue