Merge remote-tracking branch 'origin/develop' into feature/app-settings-section
This commit is contained in:
commit
8a44baf24b
|
@ -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",
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue