Improving tiddlers importation.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-09-06 18:27:40 -05:00
parent 307ed4809b
commit 27eb70e928

View File

@ -121,7 +121,7 @@ Tiddler >> fromDictionary: aDictionary [
| customKeys | | customKeys |
self self
title: (aDictionary at: 'title'); title: (aDictionary at: 'title');
text: (aDictionary at: 'text'); text: (aDictionary at: 'text' ifAbsentPut: [ nil ]);
tags: (aDictionary at: 'tags' ifAbsentPut: [ nil ]); tags: (aDictionary at: 'tags' ifAbsentPut: [ nil ]);
created: (aDictionary at: 'created' ifAbsentPut: [ nil ]); created: (aDictionary at: 'created' ifAbsentPut: [ nil ]);
creator: (aDictionary at: 'creator' ifAbsentPut: [ nil ]); creator: (aDictionary at: 'creator' ifAbsentPut: [ nil ]);