diff --git a/client/src/actions/index.js b/client/src/actions/index.js index 015aecd1..cb6cd1ed 100644 --- a/client/src/actions/index.js +++ b/client/src/actions/index.js @@ -297,7 +297,7 @@ export const setRules = rules => async (dispatch) => { .replace(/^\n/g, '') .replace(/\n\s*\n/g, '\n'); await apiClient.setRules(replacedLineEndings); - dispatch(addSuccessToast('Custom rules saved')); + dispatch(addSuccessToast('Updated the custom filtering rules')); dispatch(setRulesSuccess()); } catch (error) { dispatch(addErrorToast({ error })); @@ -456,7 +456,7 @@ export const setUpstream = url => async (dispatch) => { dispatch(setUpstreamRequest()); try { await apiClient.setUpstream(url); - dispatch(addSuccessToast('Upstream DNS servers saved')); + dispatch(addSuccessToast('Updated the upstream DNS servers')); dispatch(setUpstreamSuccess()); } catch (error) { dispatch(addErrorToast({ error })); diff --git a/client/src/components/Dashboard/Clients.js b/client/src/components/Dashboard/Clients.js index ab36fa90..a3f4ae14 100644 --- a/client/src/components/Dashboard/Clients.js +++ b/client/src/components/Dashboard/Clients.js @@ -15,7 +15,7 @@ const Clients = props => ( Header: 'IP', accessor: 'ip', }, { - Header: 'Request count', + Header: 'Requests count', accessor: 'count', }]} showPagination={false} diff --git a/client/src/components/Dashboard/QueriedDomains.js b/client/src/components/Dashboard/QueriedDomains.js index e8d2fcff..fd756e0e 100644 --- a/client/src/components/Dashboard/QueriedDomains.js +++ b/client/src/components/Dashboard/QueriedDomains.js @@ -15,7 +15,7 @@ const QueriedDomains = props => ( Header: 'IP', accessor: 'ip', }, { - Header: 'Request count', + Header: 'Requests count', accessor: 'count', }]} showPagination={false} diff --git a/client/src/components/Filters/index.js b/client/src/components/Filters/index.js index 043f0c5c..e2692aaa 100644 --- a/client/src/components/Filters/index.js +++ b/client/src/components/Filters/index.js @@ -39,11 +39,11 @@ class Filters extends Component { width: 90, className: 'text-center', }, { - Header: 'Filter name', + Header: 'Name', accessor: 'name', Cell: ({ value }) => (