v4.0.1 [ci-build]
This commit is contained in:
parent
320f402680
commit
389f233e2e
@ -25,7 +25,7 @@
|
||||
<script>
|
||||
if (typeof module === 'object') {window.module = module; module = undefined;}//jQuery Fix
|
||||
const isApp = typeof require !== 'undefined';
|
||||
const appVersion = '4.0.0';
|
||||
const appVersion = '4.0.1';
|
||||
|
||||
|
||||
if (localStorage.getItem('theme')) {
|
||||
|
@ -103,6 +103,7 @@ var codec = new Codec('project', {
|
||||
}
|
||||
|
||||
for (var key in ModelProject.properties) {
|
||||
if (ModelProject.properties[key].export == false) continue;
|
||||
ModelProject.properties[key].copy(Project, model)
|
||||
}
|
||||
|
||||
|
@ -50,6 +50,7 @@ class Property {
|
||||
if (typeof options.merge_validation == 'function') this.merge_validation = options.merge_validation;
|
||||
if (options.condition) this.condition = options.condition;
|
||||
if (options.exposed == false) this.exposed = false;
|
||||
if (options.export == false) this.export = false;
|
||||
if (options.label) this.label = options.label;
|
||||
if (options.description) this.description = options.description;
|
||||
if (options.options) this.options = options.options;
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user