Explorar el Código

Remove unnecessary variable in ColumnLink component (#2341)

Fix bug in cca41ea544 .
master
Yamagishi Kazutoshi hace 7 años
committed by Eugen
padre
commit
219fb317ee
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/assets/javascripts/components/features/ui/components/column_link.jsx

+ 1
- 1
app/assets/javascripts/components/features/ui/components/column_link.jsx Ver fichero

@@ -4,7 +4,7 @@ import { Link } from 'react-router';
const ColumnLink = ({ icon, text, to, href, method, hideOnMobile }) => {
if (href) {
return (
<a href={href} style={outerStyle} className={`column-link ${hideOnMobile ? 'hidden-on-mobile' : ''}`} data-method={method}>
<a href={href} className={`column-link ${hideOnMobile ? 'hidden-on-mobile' : ''}`} data-method={method}>
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
{text}
</a>


Cargando…
Cancelar
Guardar