Skip to content

Commit

Permalink
Merge pull request #52 from metrico/jacovinus-charts
Browse files Browse the repository at this point in the history
fix EOF
  • Loading branch information
jacovinus authored Mar 1, 2022
2 parents 4685326 + 4648dcb commit b29388f
Show file tree
Hide file tree
Showing 20 changed files with 18 additions and 20 deletions.
1 change: 0 additions & 1 deletion src/actions/LoadLabels.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export default function loadLabels(apiUrl) {
}

}


}).catch(error => {
console.log(error)
Expand Down
2 changes: 1 addition & 1 deletion src/actions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export * from "./setTimeRangeLabel"
export * from "./setApiUrl";
export * from "./setQuery";
export * from "./setIsSubmit";
export * from "./setMatrixData";
export * from "./setMatrixData";
2 changes: 1 addition & 1 deletion src/actions/loadLabelValues.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ export default function loadLaebelValues(label, labelList, apiUrl) {
}


}
}
2 changes: 1 addition & 1 deletion src/actions/setApiError.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setApiError = (apiErrors) => (dispatch) => {
type: 'SET_API_ERRORS',
apiErrors
})
}
}
2 changes: 1 addition & 1 deletion src/actions/setApiUrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setApiUrl = ( apiUrl ) => (dispatch) => {
type: 'SET_API_URL',
apiUrl:apiUrl.trim()
})
}
}
2 changes: 1 addition & 1 deletion src/actions/setIsSubmit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setIsSubmit = (isSubmit) => (dispatch)=>{
type: 'SET_IS_SUBMIT',
isSubmit
})
}
}
2 changes: 1 addition & 1 deletion src/actions/setLabelValues.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export default (labelValues) => (dispatch) => {
type: 'SET_LABEL_VALUES',
labelValues
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setLabels.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export default (labels) => (dispatch) => {
type: 'SET_LABELS',
labels: labels
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setLabelsBrowserOpen.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setLabelsBrowserOpen = ( labelsBrowserOpen) => (dispatch) => {
type: 'SET_BROWSER_OPEN',
labelsBrowserOpen
})
}
}
2 changes: 1 addition & 1 deletion src/actions/setLoading.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export default (loading) => (dispatch) => {
type: 'SET_LOADING',
loading
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setLogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export default (logs) => (dispatch) => {
type: 'SET_LOGS',
logs
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setMatrixData.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const setMatrixData = (matrixData) => (dispatch) => {
})
}

export default setMatrixData;
export default setMatrixData;
1 change: 0 additions & 1 deletion src/actions/setQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
query
})
}

2 changes: 1 addition & 1 deletion src/actions/setQueryLimit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setQueryLimit = (limit) => (dispatch) => {
type: 'SET_QUERY_LIMIT',
limit
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setQueryStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setQueryStep = (step) => (dispatch)=>{
type: 'SET_QUERY_STEP',
step
})
}
}
2 changes: 1 addition & 1 deletion src/actions/setRangeOpen.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setRangeOpen = ( rangeOpen ) => (dispatch) => {
type: 'SET_RANGE_OPEN',
rangeOpen
})
}
}
2 changes: 1 addition & 1 deletion src/actions/setStartTime.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setStartTime = (start) => (dispatch) => {
type: 'SET_START_TIME',
start
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setStopTime.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setStopTime = (stop) => (dispatch) => {
type: 'SET_STOP_TIME',
stop
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setTimeRangeLabel.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export const setTimeRangeLabel = (label) => (dispatch) => {
type: 'SET_TIME_RANGE_LABEL',
label
});
}
}
2 changes: 1 addition & 1 deletion src/actions/setUrlQueryParams.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export const setUrlQueryParams = (urlQueryParams) => (dispatch) => {
urlQueryParams

})
}
}

0 comments on commit b29388f

Please sign in to comment.