Skip to content
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

Warning cause of missing prop matrix.vue #2513

Closed
CaptainCannabis opened this issue Nov 8, 2020 · 2 comments
Closed

Warning cause of missing prop matrix.vue #2513

CaptainCannabis opened this issue Nov 8, 2020 · 2 comments
Labels
Milestone

Comments

@CaptainCannabis
Copy link

CaptainCannabis commented Nov 8, 2020

in this commit "columnIndex" key in row 9 has been removed resulting in a warning when rendering matrix.vue component.
a0ed68d

<th v-for="column in question.visibleColumns" :key="columnIndex" :class="question.cssClasses.headerCell">

should be

<th v-for="(column, columnIndex) in question.visibleColumns" :key="columnIndex" :class="question.cssClasses.headerCell">

@gologames

@CaptainCannabis
Copy link
Author

That was quick - will update my project the other day and confirm & close this.

@andrewtelnov
Copy link
Member

@CaptainCannabis Thank you for reporting the issue!
Andrew

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants