@gudhub/core 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -155,11 +155,6 @@ export default function generateModulesList(async_modules_path, file_server_url)
155
155
  url: file_server_url + '/' + async_modules_path + "calculator_data.js",
156
156
  type: 'angular'
157
157
  },
158
- {
159
- name: "calendar",
160
- url: file_server_url + '/' + async_modules_path + "calendar_data.js",
161
- type: 'angular'
162
- },
163
158
  {
164
159
  name: "string_join",
165
160
  url: file_server_url + '/' + async_modules_path + "string_joiner_data.js",
@@ -520,7 +515,7 @@ export default function generateModulesList(async_modules_path, file_server_url)
520
515
  type: 'class'
521
516
  },
522
517
  {
523
- name: 'fullcalendar',
518
+ name: 'calendar',
524
519
  js: 'https://gudhub.com/modules/FullCalendar-Gh-Element/dist/main.js',
525
520
  css: 'https://gudhub.com/modules/FullCalendar-Gh-Element/dist/style.css',
526
521
  type: 'class'
@@ -362,7 +362,7 @@ export default class AppsTemplateService {
362
362
  properties.forEach(prop => {
363
363
  let propertyValue = object[prop];
364
364
 
365
- if (propertyValue && typeof object != 'string') {
365
+ if (typeof propertyValue !== 'undefined' && typeof object != 'string') {
366
366
  action(prop, propertyValue, object);
367
367
  self.crawling(propertyValue, action);
368
368
  }
@@ -387,7 +387,7 @@ export default class AppsTemplateService {
387
387
  appsConnectingMap.apps.forEach(appMap => {
388
388
  if (app.view_init === appMap.new_view_init) {
389
389
  appsConnectingMap.views.forEach(view => {
390
- if (appMap.old_view_init === view.old_view_init) {
390
+ if (appMap.old_view_init === view.old_view_id) {
391
391
  app.view_init = view.new_view_id;
392
392
  }
393
393
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gudhub/core",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {