Merge pull request #3884 from malavbhavsar/develop
Fix services index view
This commit is contained in:
commit
49cabca34b
2 changed files with 2 additions and 1 deletions
|
|
@ -41,6 +41,7 @@
|
||||||
* Resize deletelabel and ignoreuser images to align them [#3779](https://github.com/diaspora/diaspora/issues/3779)
|
* Resize deletelabel and ignoreuser images to align them [#3779](https://github.com/diaspora/diaspora/issues/3779)
|
||||||
* Patch in Armenian pluralization rule until CLDR provides it.
|
* Patch in Armenian pluralization rule until CLDR provides it.
|
||||||
* Fix reshare a post multiple times[#3831](https://github.com/diaspora/diaspora/issues/3671)
|
* Fix reshare a post multiple times[#3831](https://github.com/diaspora/diaspora/issues/3671)
|
||||||
|
* Fix services index view. [#3884](https://github.com/diaspora/diaspora/issues/3884)
|
||||||
|
|
||||||
## Gem Updates
|
## Gem Updates
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,5 @@
|
||||||
= t('services.index.no_services')
|
= t('services.index.no_services')
|
||||||
|
|
||||||
- AppConfig.configured_services.each do |service|
|
- AppConfig.configured_services.each do |service|
|
||||||
- unless @services.any?{|x| x.provider == service}
|
- unless @services.any?{|x| x.provider == service.to_s}
|
||||||
%h4= link_to(t("services.index.connect_to_#{service}"), "/auth/#{service}")
|
%h4= link_to(t("services.index.connect_to_#{service}"), "/auth/#{service}")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue