mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
added hide_in_autocomplete attribute to weight script
This commit is contained in:
parent
dfd9927310
commit
5bce9a5f94
@ -40,7 +40,8 @@
|
||||
await this.createNote(parentNoteId, 'data', jsonContent, {
|
||||
json: true,
|
||||
attributes: {
|
||||
date_data: date
|
||||
date_data: date,
|
||||
hide_in_autocomplete: null
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -70,7 +71,9 @@
|
||||
return data;
|
||||
});
|
||||
|
||||
var config = {
|
||||
const ctx = $("#canvas")[0].getContext("2d");
|
||||
|
||||
new Chart(ctx, {
|
||||
type: 'line',
|
||||
data: {
|
||||
labels: data.map(row => row.date),
|
||||
@ -82,10 +85,7 @@
|
||||
fill: false
|
||||
}]
|
||||
}
|
||||
};
|
||||
|
||||
var ctx = $("#canvas")[0].getContext("2d");
|
||||
new Chart(ctx, config);
|
||||
});
|
||||
}
|
||||
|
||||
$("#weight-form").submit(event => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user