-
Notifications
You must be signed in to change notification settings - Fork 36
Add warning icon when user profile is incomplete #374
base: develop
Are you sure you want to change the base?
Conversation
1. All links on SOB redirect to landing pageSteps:
Actual result:no redirect to
Expected result:
Video: http://take.ms/sTY0j
|
Tracking it down. |
@siphiuel not entirely sure but could be CircleCI is failing because this isn't rebased against master? |
repo-count (rf/subscribe [:get-in [:user :repo_count]]) | ||
hide-address-warning (rf/subscribe [:get-in [:user :hide_address_warning]]) | ||
hide-gh-repos-warning (rf/subscribe [:get-in [:user :hide_gh_repos_warning]]) | ||
warning-open? (rf/subscribe [:warning-open?])] |
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.
These :get-in
subscriptions can lead to problems should we ever change the structure of our app-db. Not a big deal for now but worth keeping in mind. Suggestions: Have a :user
subscription that returns full user map.
src/cljs/commiteth/core.cljs
Outdated
[:div [:input {:type "checkbox" | ||
:id :hide-warning | ||
:on-change on-change-fn}] | ||
[:label {:for :hide-warning} "Do not show this again"]]])]))))) |
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.
Nice one on using for
👍
@martinklepsch Regarding CircleCI - yes, the branch still does not contain generated Java contracts. |
Fixes #352
Following changes are made:
is_hidden_in_hunters
flag in aopts
JSONB field.Status: Done