Skip to content

Commit

Permalink
Fixed notification overlay bug (#251)
Browse files Browse the repository at this point in the history
Fixed notification overlay bug
  • Loading branch information
hql287 committed Mar 8, 2018
1 parent 929db27 commit c76bebf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app/components/settings/_partials/invoice/Other.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ import PropTypes from 'prop-types';
const moment = require('moment');

import { Row, Field, Header, Part } from '../../../shared/Part';
import styled from 'styled-components';

const ExportDir = styled.div`
display: flex;
`;

function Other({
dateFormat,
Expand All @@ -20,9 +25,8 @@ function Other({
<Row>
<Field>
<label className="itemLabel">{t('settings:fields:pdfExportDir')}</label>
<div className="input-group">
<ExportDir>
<input
className="form-control"
name="exportDir"
type="text"
value={exportDir}
Expand All @@ -35,7 +39,7 @@ function Other({
>
<i className="ion-folder" />
</a>
</div>
</ExportDir>
</Field>
</Row>
<Row>
Expand Down

0 comments on commit c76bebf

Please sign in to comment.