glib-web 4.35.1 → 4.35.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.vue +1 -1
- package/components/fields/_select.vue +4 -4
- package/package.json +1 -1
package/app.vue
CHANGED
|
@@ -151,7 +151,7 @@ export default {
|
|
|
151
151
|
},
|
|
152
152
|
created() {
|
|
153
153
|
console.debug(
|
|
154
|
-
`
|
|
154
|
+
`Version: ${Utils.settings.appVersion} (${Utils.settings.env})`
|
|
155
155
|
);
|
|
156
156
|
Utils.history.saveInitialContent(this.page);
|
|
157
157
|
Utils.history.restoreOnBackOrForward({
|
|
@@ -58,7 +58,7 @@ import inputVariant from '../mixins/inputVariant';
|
|
|
58
58
|
import { determineDensity } from "../../utils/constant";
|
|
59
59
|
import { triggerOnChange, triggerOnInput, useGlibInput } from "../composable/form";
|
|
60
60
|
import Hash from '../../utils/hash';
|
|
61
|
-
import {
|
|
61
|
+
import { isBoolean } from '../../utils/type';
|
|
62
62
|
|
|
63
63
|
import { useGlibSelectable, watchNoneOfAbove } from '../composable/selectable';
|
|
64
64
|
import { ref } from 'vue';
|
|
@@ -97,9 +97,9 @@ export default {
|
|
|
97
97
|
},
|
|
98
98
|
computed: {
|
|
99
99
|
useChips() {
|
|
100
|
-
|
|
101
|
-
return
|
|
102
|
-
}
|
|
100
|
+
if (isBoolean(this.spec.useChips)) {
|
|
101
|
+
return this.spec.useChips;
|
|
102
|
+
}
|
|
103
103
|
return this.spec.multiple;
|
|
104
104
|
},
|
|
105
105
|
compName() {
|