Open krishaamer opened 6 years ago
Hmm, this looks familiar, but I think it's rather question of autoform package and proper fields configuration. As I remember correctly, this happens when autoform doesn't know which editor to use. Have you checked it this way?
@krishaamer so downgrading simpl-schema worked? Not a good information, but helpful
Yep, there's a lot of versions of simpl-schema between these two which I didn't check but using @0.3.2 works fine for the past 2 days.
Are you sure that you gave permission? eg:.
Pages.allow({
insert: function (userId, doc) {
return false;
},
update: function (userId, doc, fields, modifier) {
return false;
},
remove: function (userId, doc) {
return false;
}
});
Hey @ignacy130, thanks so much for taking this package under your wing and developing it further!
I've been able to get most of it working after moving away from the Yogiben package however one error remains:
When I try to edit a field all the fields show up as objects instead of the actual fields. Have you encountered such an error before?
Here's what I'm using:
EDIT:
I went through your npm-shrinkwrap.json and tried npm
simpl-schema@0.3.2
instead of thesimpl-schema@1.5.0
I was using and this made it work. So I guess something has broken since..