small screen fix
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template lang="pug">
|
||||
.flex.flex-col.gap-y-2
|
||||
base-input-container(:label="label", :style="{width: width, ...sizeVariable}")
|
||||
base-input-container(:label="label", :style="{width: widthInternal, ...sizeVariable}")
|
||||
q-select.select(
|
||||
ref="selectRef"
|
||||
v-model="value",
|
||||
@@ -159,6 +159,10 @@ export default {
|
||||
: !!this.value?.label,
|
||||
};
|
||||
},
|
||||
widthInternal() {
|
||||
if (typeof this.width === "number") return this.width + "px";
|
||||
return this.width;
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
updateInputValue(value, noFilter) {
|
||||
|
||||
Reference in New Issue
Block a user