diff --git a/mithril.js b/mithril.js index d7054596..12fa23fd 100644 --- a/mithril.js +++ b/mithril.js @@ -1306,7 +1306,7 @@ } m.prop = function (store) { - if ((store != null && isObject(store) || isFunction(store)) && + if ((store != null && isObject(store) || isFunction(store)) || store instanceof window.Promise && isFunction(store.then)) { return propify(store) }