1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Merge pull request #1096 from Budibase/fix/multiselect-overhang-issue

fix: prevents options to hang off the screen in the properties panel when using multiselect
This commit is contained in:
Kevin Åberg Kultalahti 2021-02-05 17:20:44 +01:00 committed by GitHub
commit de5872862c
4 changed files with 7 additions and 7 deletions

View file

@ -63,7 +63,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@budibase/bbui": "^1.56.0", "@budibase/bbui": "^1.58.0",
"@budibase/client": "^0.7.4", "@budibase/client": "^0.7.4",
"@budibase/colorpicker": "1.0.1", "@budibase/colorpicker": "1.0.1",
"@budibase/string-templates": "^0.7.4", "@budibase/string-templates": "^0.7.4",

View file

@ -22,7 +22,7 @@
</script> </script>
<div> <div>
<Multiselect extraThin secondary value={boundValue} on:change={setValue}> <Multiselect align="right" extraThin secondary value={boundValue} on:change={setValue}>
{#each options as option} {#each options as option}
<option value={option}>{option}</option> <option value={option}>{option}</option>
{/each} {/each}

View file

@ -125,7 +125,7 @@
.control { .control {
flex: 1; flex: 1;
display: flex; display: inline-block;
padding-left: 2px; padding-left: 2px;
overflow: hidden; overflow: hidden;
} }

View file

@ -842,10 +842,10 @@
lodash "^4.17.19" lodash "^4.17.19"
to-fast-properties "^2.0.0" to-fast-properties "^2.0.0"
"@budibase/bbui@^1.56.0": "@budibase/bbui@^1.58.0":
version "1.56.0" version "1.58.0"
resolved "https://registry.yarnpkg.com/@budibase/bbui/-/bbui-1.56.0.tgz#91376f11b43706fd380291e9a5283760996eb62b" resolved "https://registry.yarnpkg.com/@budibase/bbui/-/bbui-1.58.0.tgz#197a44188138e28a006f5b1074dab53ae7986d72"
integrity sha512-OEFC7MapbJk7Bd7oo79cVOq9BIcK1x8XPHLC1lB2N4hts37IygzB4Egg6JZBD7rh7CqU8ppc4W7wkfQbaXEO1Q== integrity sha512-YNdBIpD7n50S+8kvYavp2P0pVPL56cHfpaFMWL5jaJynohsc4ERmlH0LmZZfkSFLnkf07OszoLRYcVQOdUgQdg==
dependencies: dependencies:
markdown-it "^12.0.2" markdown-it "^12.0.2"
quill "^1.3.7" quill "^1.3.7"