From 4648dcbfd18cfd5fb28653ef8f64b442c34a02b0 Mon Sep 17 00:00:00 2001 From: jacovinus Date: Tue, 1 Mar 2022 19:46:07 +0100 Subject: [PATCH] fix EOF --- src/actions/LoadLabels.js | 1 - src/actions/index.js | 2 +- src/actions/loadLabelValues.js | 2 +- src/actions/setApiError.js | 2 +- src/actions/setApiUrl.js | 2 +- src/actions/setIsSubmit.js | 2 +- src/actions/setLabelValues.js | 2 +- src/actions/setLabels.js | 2 +- src/actions/setLabelsBrowserOpen.js | 2 +- src/actions/setLoading.js | 2 +- src/actions/setLogs.js | 2 +- src/actions/setMatrixData.js | 2 +- src/actions/setQuery.js | 1 - src/actions/setQueryLimit.js | 2 +- src/actions/setQueryStep.js | 2 +- src/actions/setRangeOpen.js | 2 +- src/actions/setStartTime.js | 2 +- src/actions/setStopTime.js | 2 +- src/actions/setTimeRangeLabel.js | 2 +- src/actions/setUrlQueryParams.js | 2 +- 20 files changed, 18 insertions(+), 20 deletions(-) diff --git a/src/actions/LoadLabels.js b/src/actions/LoadLabels.js index 0de3da27..8065dcd4 100644 --- a/src/actions/LoadLabels.js +++ b/src/actions/LoadLabels.js @@ -46,7 +46,6 @@ export default function loadLabels(apiUrl) { } } - }).catch(error => { console.log(error) diff --git a/src/actions/index.js b/src/actions/index.js index 1c322fee..bbc9d601 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -8,4 +8,4 @@ export * from "./setTimeRangeLabel" export * from "./setApiUrl"; export * from "./setQuery"; export * from "./setIsSubmit"; -export * from "./setMatrixData"; \ No newline at end of file +export * from "./setMatrixData"; diff --git a/src/actions/loadLabelValues.js b/src/actions/loadLabelValues.js index 9e914398..036b9052 100644 --- a/src/actions/loadLabelValues.js +++ b/src/actions/loadLabelValues.js @@ -67,4 +67,4 @@ export default function loadLaebelValues(label, labelList, apiUrl) { } -} \ No newline at end of file +} diff --git a/src/actions/setApiError.js b/src/actions/setApiError.js index a9031b0c..6b9fb8d6 100644 --- a/src/actions/setApiError.js +++ b/src/actions/setApiError.js @@ -3,4 +3,4 @@ export const setApiError = (apiErrors) => (dispatch) => { type: 'SET_API_ERRORS', apiErrors }) -} \ No newline at end of file +} diff --git a/src/actions/setApiUrl.js b/src/actions/setApiUrl.js index fc8d88d8..b3ed8e1e 100644 --- a/src/actions/setApiUrl.js +++ b/src/actions/setApiUrl.js @@ -3,4 +3,4 @@ export const setApiUrl = ( apiUrl ) => (dispatch) => { type: 'SET_API_URL', apiUrl:apiUrl.trim() }) -} \ No newline at end of file +} diff --git a/src/actions/setIsSubmit.js b/src/actions/setIsSubmit.js index 73813af8..7c3cd2ce 100644 --- a/src/actions/setIsSubmit.js +++ b/src/actions/setIsSubmit.js @@ -3,4 +3,4 @@ export const setIsSubmit = (isSubmit) => (dispatch)=>{ type: 'SET_IS_SUBMIT', isSubmit }) -} \ No newline at end of file +} diff --git a/src/actions/setLabelValues.js b/src/actions/setLabelValues.js index c80745b4..d0c0fa5f 100644 --- a/src/actions/setLabelValues.js +++ b/src/actions/setLabelValues.js @@ -3,4 +3,4 @@ export default (labelValues) => (dispatch) => { type: 'SET_LABEL_VALUES', labelValues }); -} \ No newline at end of file +} diff --git a/src/actions/setLabels.js b/src/actions/setLabels.js index f649c03f..8a839e50 100644 --- a/src/actions/setLabels.js +++ b/src/actions/setLabels.js @@ -3,4 +3,4 @@ export default (labels) => (dispatch) => { type: 'SET_LABELS', labels: labels }); -} \ No newline at end of file +} diff --git a/src/actions/setLabelsBrowserOpen.js b/src/actions/setLabelsBrowserOpen.js index 9f071d0e..08577548 100644 --- a/src/actions/setLabelsBrowserOpen.js +++ b/src/actions/setLabelsBrowserOpen.js @@ -3,4 +3,4 @@ export const setLabelsBrowserOpen = ( labelsBrowserOpen) => (dispatch) => { type: 'SET_BROWSER_OPEN', labelsBrowserOpen }) -} \ No newline at end of file +} diff --git a/src/actions/setLoading.js b/src/actions/setLoading.js index 691b5eb9..11cd1b01 100644 --- a/src/actions/setLoading.js +++ b/src/actions/setLoading.js @@ -3,4 +3,4 @@ export default (loading) => (dispatch) => { type: 'SET_LOADING', loading }); -} \ No newline at end of file +} diff --git a/src/actions/setLogs.js b/src/actions/setLogs.js index 5eb5f169..7ced90c6 100644 --- a/src/actions/setLogs.js +++ b/src/actions/setLogs.js @@ -3,4 +3,4 @@ export default (logs) => (dispatch) => { type: 'SET_LOGS', logs }); -} \ No newline at end of file +} diff --git a/src/actions/setMatrixData.js b/src/actions/setMatrixData.js index afb1906b..6b78bf04 100644 --- a/src/actions/setMatrixData.js +++ b/src/actions/setMatrixData.js @@ -5,4 +5,4 @@ const setMatrixData = (matrixData) => (dispatch) => { }) } -export default setMatrixData; \ No newline at end of file +export default setMatrixData; diff --git a/src/actions/setQuery.js b/src/actions/setQuery.js index f17767ef..cc9e3a51 100644 --- a/src/actions/setQuery.js +++ b/src/actions/setQuery.js @@ -4,4 +4,3 @@ query }) } - diff --git a/src/actions/setQueryLimit.js b/src/actions/setQueryLimit.js index 121b340b..e8af27d4 100644 --- a/src/actions/setQueryLimit.js +++ b/src/actions/setQueryLimit.js @@ -3,4 +3,4 @@ export const setQueryLimit = (limit) => (dispatch) => { type: 'SET_QUERY_LIMIT', limit }); -} \ No newline at end of file +} diff --git a/src/actions/setQueryStep.js b/src/actions/setQueryStep.js index 5c7a4416..6bc6a526 100644 --- a/src/actions/setQueryStep.js +++ b/src/actions/setQueryStep.js @@ -3,4 +3,4 @@ export const setQueryStep = (step) => (dispatch)=>{ type: 'SET_QUERY_STEP', step }) -} \ No newline at end of file +} diff --git a/src/actions/setRangeOpen.js b/src/actions/setRangeOpen.js index f71b6f0b..c4685419 100644 --- a/src/actions/setRangeOpen.js +++ b/src/actions/setRangeOpen.js @@ -3,4 +3,4 @@ export const setRangeOpen = ( rangeOpen ) => (dispatch) => { type: 'SET_RANGE_OPEN', rangeOpen }) -} \ No newline at end of file +} diff --git a/src/actions/setStartTime.js b/src/actions/setStartTime.js index e09c38b7..8b349e56 100644 --- a/src/actions/setStartTime.js +++ b/src/actions/setStartTime.js @@ -3,4 +3,4 @@ export const setStartTime = (start) => (dispatch) => { type: 'SET_START_TIME', start }); -} \ No newline at end of file +} diff --git a/src/actions/setStopTime.js b/src/actions/setStopTime.js index 09e268d7..119d9ae8 100644 --- a/src/actions/setStopTime.js +++ b/src/actions/setStopTime.js @@ -3,4 +3,4 @@ export const setStopTime = (stop) => (dispatch) => { type: 'SET_STOP_TIME', stop }); -} \ No newline at end of file +} diff --git a/src/actions/setTimeRangeLabel.js b/src/actions/setTimeRangeLabel.js index 12821d75..febccaf3 100644 --- a/src/actions/setTimeRangeLabel.js +++ b/src/actions/setTimeRangeLabel.js @@ -3,4 +3,4 @@ export const setTimeRangeLabel = (label) => (dispatch) => { type: 'SET_TIME_RANGE_LABEL', label }); -} \ No newline at end of file +} diff --git a/src/actions/setUrlQueryParams.js b/src/actions/setUrlQueryParams.js index 6437875f..48dc7fe9 100644 --- a/src/actions/setUrlQueryParams.js +++ b/src/actions/setUrlQueryParams.js @@ -4,4 +4,4 @@ export const setUrlQueryParams = (urlQueryParams) => (dispatch) => { urlQueryParams }) -} \ No newline at end of file +}