remove logs
This commit is contained in:
parent
5505ad3cda
commit
3d7bde554d
|
@ -22,10 +22,8 @@
|
|||
let columnDefs
|
||||
|
||||
onMount(async () => {
|
||||
console.log(datasource)
|
||||
const jsonModel = await _bb.api.get(`/api/models/${datasource.modelId}`)
|
||||
const { schema } = await jsonModel.json()
|
||||
console.log(schema)
|
||||
if (!isEmpty(datasource)) {
|
||||
data = await fetchData(datasource)
|
||||
columnDefs = Object.keys(schema).map(key => {
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
// https://www.ag-grid.com/javascript-grid-value-setters/
|
||||
// These handles values and makes sure they adhere to the data type provided by the model
|
||||
export const number = (params) => {
|
||||
console.log('Params: ', params)
|
||||
console.log('New Value: ', parseFloat(params.newValue))
|
||||
params.data[params.colDef.field] = parseFloat(params.newValue);
|
||||
return true;
|
||||
}
|
Loading…
Reference in New Issue