Skip to content

Commit

Permalink
Merge pull request #308 from artshade/bugfix/log-viewer
Browse files Browse the repository at this point in the history
Fixed issue with search API optional parameters
  • Loading branch information
arukompas authored Dec 30, 2023
2 parents 647b0c4 + 5af82a1 commit 7cfc9d7
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 7cfc9d7

Please sign in to comment.