biz9-logic 4.9.109 → 4.9.110

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.
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='9.8.0'
1
+ VERSION='9.8.1'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main'
package/index.js CHANGED
@@ -325,7 +325,7 @@ class Type {
325
325
  static get_page_list(){
326
326
  return [
327
327
  {value:Type.PAGE_ABOUT,label:Title.PAGE_ABOUT,url:Url.PAGE_ABOUT},
328
- {value:Type.PAGE_BLOG_POST,label:Title.PAGE_BLOG_POST,url:Title.PAGE_BLOG_POST},
328
+ {value:Type.PAGE_BLOG_POST,label:Title.PAGE_BLOG_POST,url:Url.PAGE_BLOG_POST},
329
329
  {value:Type.PAGE_BLOG_POST_HOME,label:Title.PAGE_BLOG_POST_HOME,url:Url.PAGE_BLOG_POST_HOME},
330
330
  {value:Type.PAGE_CONTACT,label:Title.PAGE_CONTACT,label:Title.PAGE_CONTACT,url:Url.PAGE_CONTACT},
331
331
  {value:Type.PAGE_EVENT,label:Title.PAGE_EVENT,url:Url.PAGE_EVENT},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.9.109",
3
+ "version": "4.9.110",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/test.js CHANGED
@@ -39,8 +39,8 @@ describe("connect", () => {
39
39
  let item_list = [];
40
40
  for(var a = 0; a < Type.get_page_list().length;a++){
41
41
  let my_type = Type.get_page_list()[a];
42
- console.log('value='+my_type.value);
43
- console.log('label='+my_type.label);
42
+ //console.log('value='+my_type.value);
43
+ //console.log('label='+my_type.label);
44
44
  console.log('url='+my_type.url);
45
45
  }
46
46
  //Log.w('Title',Type.get_title(Type.ORDER_STATUS_NEW));