1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 17:53:15 +00:00

Tiddler sql function tests should show custom field

This commit is contained in:
jeremy@jermolene.com 2023-06-23 14:52:14 +01:00
parent c43bc8f92a
commit 831fb3996d

View File

@ -70,7 +70,7 @@ $tw.Wiki = function(options) {
}
sqlSaveTiddler({title: "HelloThere", text: "One"});
console.log(sqlGetTiddler("HelloThere"));
sqlSaveTiddler({title: "HelloThere", text: "Two"});
sqlSaveTiddler({title: "HelloThere", text: "Two", custom: "A custom field"});
console.log(sqlGetTiddler("HelloThere"));
// Plain JS wiki store implementation follows
options = options || {};