Make contacts visible in new aspect unchecked by default, close #4343
This commit is contained in:
parent
ff4a66ca5c
commit
ef24275f7c
3 changed files with 2 additions and 2 deletions
|
|
@ -42,6 +42,7 @@
|
||||||
* OpenGraph support [#4215](https://github.com/diaspora/diaspora/pull/4215)
|
* OpenGraph support [#4215](https://github.com/diaspora/diaspora/pull/4215)
|
||||||
* Added Wordpress service ability for posts. [#4321](https://github.com/diaspora/diaspora/pull/4321)
|
* Added Wordpress service ability for posts. [#4321](https://github.com/diaspora/diaspora/pull/4321)
|
||||||
* Implement tag search autocomplete in header search box [#4169](https://github.com/diaspora/diaspora/issues/4169)
|
* Implement tag search autocomplete in header search box [#4169](https://github.com/diaspora/diaspora/issues/4169)
|
||||||
|
* Uncheck 'make contacts visible to each other' by default when adding new aspect. [#4343](https://github.com/diaspora/diaspora/issues/4343)
|
||||||
|
|
||||||
|
|
||||||
# 0.1.1.0
|
# 0.1.1.0
|
||||||
|
|
|
||||||
|
|
@ -689,7 +689,6 @@ form#update_profile_form p.checkbox_select
|
||||||
:top 0
|
:top 0
|
||||||
|
|
||||||
form p.checkbox_select
|
form p.checkbox_select
|
||||||
:width 75%
|
|
||||||
label
|
label
|
||||||
:left 25px
|
:left 25px
|
||||||
:top 3px
|
:top 3px
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
%p.checkbox_select
|
%p.checkbox_select
|
||||||
= aspect.label :contacts_visible, t('aspects.edit.make_aspect_list_visible')
|
= aspect.label :contacts_visible, t('aspects.edit.make_aspect_list_visible')
|
||||||
= aspect.check_box :contacts_visible, :default => true
|
= aspect.check_box :contacts_visible, :checked => false
|
||||||
|
|
||||||
%br
|
%br
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue