empty != blank
This commit is contained in:
parent
58e80919df
commit
f76e997708
|
@ -24,21 +24,21 @@
|
||||||
|
|
||||||
%p.data-heading Bio
|
%p.data-heading Bio
|
||||||
%p.text-muted
|
%p.text-muted
|
||||||
- if current_user.bio.empty?
|
- if current_user.bio.blank?
|
||||||
None set!
|
None set!
|
||||||
- else
|
- else
|
||||||
= current_user.bio
|
= current_user.bio
|
||||||
|
|
||||||
%p.data-heading Location
|
%p.data-heading Location
|
||||||
%p.text-muted
|
%p.text-muted
|
||||||
- if current_user.location.empty?
|
- if current_user.location.blank?
|
||||||
None set!
|
None set!
|
||||||
- else
|
- else
|
||||||
= current_user.location
|
= current_user.location
|
||||||
|
|
||||||
%p.data-heading Website
|
%p.data-heading Website
|
||||||
%p.text-muted
|
%p.text-muted
|
||||||
- if current_user.website.empty?
|
- if current_user.website.blank?
|
||||||
None set!
|
None set!
|
||||||
- else
|
- else
|
||||||
= current_user.website
|
= current_user.website
|
||||||
|
@ -159,7 +159,7 @@
|
||||||
|
|
||||||
%p.data-heading Locale
|
%p.data-heading Locale
|
||||||
%p.text-muted
|
%p.text-muted
|
||||||
- if current_user.locale.empty?
|
- if current_user.locale.blank?
|
||||||
None set!
|
None set!
|
||||||
- else
|
- else
|
||||||
= current_user.locale
|
= current_user.locale
|
||||||
|
|
Loading…
Reference in New Issue