-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: treat invalid model with data as valid during view tree creation #651
base: master
Are you sure you want to change the base?
Conversation
Так, оказывается пока этого не достаточно - есть ещё проверка |
* | ||
* Returns models for view tree. | ||
* It consists of models and their statuses (ok / error). | ||
* If any of the models has error status - ns-view-error-content mode will be rendered for that view. | ||
* @returns {*} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Точно returns models
? А то эта строчка говорит any
(в сам код, без дифа не смотрел, может быть там все правильно)
// treat model as valid in case | ||
// - it is really a valid one | ||
// - it has invalid status but in has real data too (@see #649) | ||
if (model.isValid() || (model.status === this.STATUS.INVALID && !!model.getData())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
а если зашить это в isValid
— страшно (куча мест развалится)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Страшно да ..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
окай
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
В общем надо думать ещё, давай пока не мёржить, потому что проблема не ушла |
#649