-
Notifications
You must be signed in to change notification settings - Fork 178
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
Enable importance checkbox for admin and participant #1682
base: edge
Are you sure you want to change the base?
Conversation
4f65ec9
to
e1fcb8e
Compare
TODO (future):
|
client-admin/src/components/conversation-admin/conversation-config.js
Outdated
Show resolved
Hide resolved
fill: #8a8a8a; | ||
" | ||
data-text="{{s.importantCheckboxDesc}}" | ||
onclick="alert(this.dataset.text)" |
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.
Please replace the alert with a tooltip here. on-hover for desktop and on-tap for mobile.
@@ -330,9 +330,23 @@ | |||
<div style="text-align: center; margin-bottom: 20px"> | |||
<label class="weight-label"> | |||
<span class="weight-radio"></span> | |||
<input type="checkbox" name="checkbox" id="weight_high"> | |||
<input type="checkbox" name="checkbox" id="weight_high" aria-describedby="importantCheckboxDesc"> |
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.
Let's move the checkbox above the agree/disagree/pass buttons.
… above the vote buttons
@metasoarous could you please catch the "high_priority" field in the export function. |
@colinmegill Would you please do a design review on the relative positioning of the checkbox & buttons? |
incorporate changes from https://github.com/chena11356/polis/tree/implement-comment-prioritization-checkbox
credit to https://github.com/chena11356
addresses #217
recreated from #1562