Skip to content

Commit

Permalink
Fixed issue with search API optional parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
artshade committed Dec 29, 2023
1 parent 0da53f5 commit 5af82a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/stores/logViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ export const useLogViewerStore = defineStore({
query: searchStore.query,
page: paginationStore.currentPage,
per_page: this.resultsPerPage,
exclude_levels: toRaw(severityStore.excludedLevels.length > 0 ? severityStore.excludedLevels : ''),
exclude_file_types: toRaw(fileStore.fileTypesExcluded.length > 0 ? fileStore.fileTypesExcluded : ''),
exclude_levels: toRaw(severityStore.excludedLevels),
exclude_file_types: toRaw(fileStore.fileTypesExcluded),
shorter_stack_traces: this.shorterStackTraces,
};

Expand Down

0 comments on commit 5af82a1

Please sign in to comment.