Merge branch 'develop' of github.com:Budibase/budibase into grid-block

This commit is contained in:
Andrew Kingston 2023-06-16 12:09:52 +01:00
commit 9e881d071b
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.7.21-alpha.2",
"version": "2.7.24",
"npmClient": "yarn",
"packages": [
"packages/backend-core",

View File

@ -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

View File

@ -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",
},
],
}),