1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +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", "npmClient": "yarn",
"packages": [ "packages": [
"packages/backend-core", "packages/backend-core",

View file

@ -58,7 +58,7 @@ export const createValidationStore = () => {
const observe = async (propertyName, value) => { const observe = async (propertyName, value) => {
const values = get(validation).values const values = get(validation).values
let fieldIsValid let fieldIsValid
if (!values.hasOwnProperty(propertyName)) { if (!Object.prototype.hasOwnProperty.call(values, propertyName)) {
// Initial setup // Initial setup
values[propertyName] = value values[propertyName] = value
return return

View file

@ -64,11 +64,11 @@ export default defineConfig(({ mode }) => {
targets: [ targets: [
{ {
src: "../../node_modules/@fontsource/source-sans-pro", src: "../../node_modules/@fontsource/source-sans-pro",
dest: "fonts", dest: isProduction ? "fonts" : "builder/fonts",
}, },
{ {
src: "../../node_modules/remixicon/fonts/*", src: "../../node_modules/remixicon/fonts/*",
dest: "fonts", dest: isProduction ? "fonts" : "builder/fonts",
}, },
], ],
}), }),