cambiar la leyenda del botón en el filtro
no cambia el resaltado porque la definición de la clase .btn hace conflicto, para arreglar eso hay que verificar todo el panel.
This commit is contained in:
parent
f9a2d12803
commit
13b6b7a452
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
%tr
|
%tr
|
||||||
%th= layout.humanized_name
|
%th= layout.humanized_name
|
||||||
%td.pl-3= link_to t('posts.add'), new_site_post_path(@site, **@filter_params), class: 'btn btn-secondary btn-sm'
|
%td.pl-3= link_to t('posts.add'), new_site_post_path(@site, **@filter_params), class: 'btn btn-secondary btn-sm'
|
||||||
- if @filter_params[:layout] == layout.value
|
- if @filter_params[:layout] == layout.name.to_s
|
||||||
%td= link_to t('posts.remove_filter'), site_posts_path(@site, **@filter_params.merge(layout: nil)), class: 'btn btn-primary btn-sm'
|
%td= link_to t('posts.remove_filter'), site_posts_path(@site, **@filter_params.merge(layout: nil)), class: 'btn btn-primary btn-sm'
|
||||||
- else
|
- else
|
||||||
%td= link_to t('posts.filter'), site_posts_path(@site, **@filter_params.merge(layout: layout.value)), class: 'btn btn-secondary btn-sm'
|
%td= link_to t('posts.filter'), site_posts_path(@site, **@filter_params.merge(layout: layout.value)), class: 'btn btn-secondary btn-sm'
|
||||||
|
|
Loading…
Reference in a new issue