1
0
Fork 0
mirror of synced 2024-07-11 09:15:48 +12:00

Merge remote-tracking branch 'origin/develop' into feature/app-settings-section

This commit is contained in:
Dean 2023-06-16 12:31:02 +01:00
commit 8a44baf24b
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.7.21-alpha.2",
"version": "2.7.25-alpha.0",
"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",
},
],
}),