Merge branch 'develop' of github.com:Budibase/budibase into grid-block
This commit is contained in:
commit
9e881d071b
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "2.7.21-alpha.2",
|
||||
"version": "2.7.24",
|
||||
"npmClient": "yarn",
|
||||
"packages": [
|
||||
"packages/backend-core",
|
||||
|
|
|
@ -58,7 +58,7 @@ export const createValidationStore = () => {
|
|||
const observe = async (propertyName, value) => {
|
||||
const values = get(validation).values
|
||||
let fieldIsValid
|
||||
if (!values.hasOwnProperty(propertyName)) {
|
||||
if (!Object.prototype.hasOwnProperty.call(values, propertyName)) {
|
||||
// Initial setup
|
||||
values[propertyName] = value
|
||||
return
|
||||
|
|
|
@ -64,11 +64,11 @@ export default defineConfig(({ mode }) => {
|
|||
targets: [
|
||||
{
|
||||
src: "../../node_modules/@fontsource/source-sans-pro",
|
||||
dest: "fonts",
|
||||
dest: isProduction ? "fonts" : "builder/fonts",
|
||||
},
|
||||
{
|
||||
src: "../../node_modules/remixicon/fonts/*",
|
||||
dest: "fonts",
|
||||
dest: isProduction ? "fonts" : "builder/fonts",
|
||||
},
|
||||
],
|
||||
}),
|
||||
|
|
Loading…
Reference in New Issue