-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add a toggle for interval matrix indexing (Issue #411) #500
Conversation
Added an interval matrix indexing option (default zero-indexing).
Added radio buttons for "Interval indexing": 0-indexing (default) and 1-indexing. |
|
The commit message should end with |
Or do we actually have duplicate issues? #411 is just fine then. |
`label for=` should refer to the id's.
src/views/AnalysisView.vue
Outdated
</th> | ||
<th>({{ scale.size + 1 }})</th> | ||
<th>({{ scale.size + indexing.value }})</th> |
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.
In <template>
code this is just called indexing
. Now it shows NaNs.
Recommend doing |
"indexing.value" -> "indexing"
<input | ||
type="radio" | ||
id="indexing-zero" | ||
value=0 |
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.
This cause the value to become a string which messes up the UI.
Added reactivity for Issue #411.
No description provided.