Comparing version 0.7.6 to 0.7.7
{ | ||
"name": "notabase", | ||
"version": "0.7.6", | ||
"version": "0.7.7", | ||
"description": "API Wrapper For Notion's Database", | ||
@@ -5,0 +5,0 @@ "main": "src/notabase.js", |
@@ -156,7 +156,7 @@ const utils = require('./utils') | ||
case 'select': | ||
this.checkOrCreateSelectOptions(prop, value, type) | ||
this.checkOrCreateSelectOptions(prop, value, 'select') | ||
newV = [[value]] | ||
break | ||
case 'multi_select': | ||
this.checkOrCreateSelectOptions(prop, value, type) | ||
this.checkOrCreateSelectOptions(prop, value, 'multi_select') | ||
if (value instanceof Array) { | ||
@@ -163,0 +163,0 @@ value.map(v => { }) |
38099