We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
Fix: Warning cause of missing prop matrix.vue #2513
ad52387
That was quick - will update my project the other day and confirm & close this.
Sorry, something went wrong.
@CaptainCannabis Thank you for reporting the issue! Andrew
29bba0a
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: