You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the current behavior?
Currently, I have an edit button that opens an ember-bootstrap modal. This modal allows the user to edit the record in the row. However, when any value in the record (model) is changed, the modal gets hidden. I have even tried setting it manually to never close. I believe this is the table refreshing and the component is getting reset? After the first change, I can reopen the modal and it stays open as intended.
Please tell us about your environment:
ember-models-table version: 3.4.0
ember version:
ember-data version: 3.25.0
ember-cli version: 3.25.2
node version: 14.15.0
npm version: 6.14.8
ember-bootstrap version: 4.9.0
The text was updated successfully, but these errors were encountered:
@onechiporenko I was actually able to figure this out. Since the models were being passed to the component via a getter that was filtering out certain models, it needed a @computed decorator to stop it from closing the modal on initial change.
I'm submitting a ...
What is the current behavior?
Currently, I have an edit button that opens an ember-bootstrap modal. This modal allows the user to edit the record in the row. However, when any value in the record (model) is changed, the modal gets hidden. I have even tried setting it manually to never close. I believe this is the table refreshing and the component is getting reset? After the first change, I can reopen the modal and it stays open as intended.
Please tell us about your environment:
ember-models-table
version: 3.4.0ember
version:ember-data
version: 3.25.0ember-cli
version: 3.25.2node
version: 14.15.0npm
version: 6.14.8ember-bootstrap
version: 4.9.0The text was updated successfully, but these errors were encountered: