Skip to content

Commit

Permalink
fix: set apps-include-no-app default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
motoki317 committed Dec 8, 2023
1 parent 86c6058 commit 0b0ab2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/pages/apps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export default () => {
const [provider, setProvider] = createLocalSignal<Provider[]>('apps-provider', ['GitHub', 'GitLab', 'Gitea'])
const [query, setQuery] = createLocalSignal('apps-query', '')
const [sort, setSort] = createLocalSignal<keyof typeof sortItems>('apps-sort', sortItems.desc.value)
const [includeNoApp, setIncludeNoApp] = createLocalSignal('apps-include-no-app', true)
const [includeNoApp, setIncludeNoApp] = createLocalSignal('apps-include-no-app', false)

const [scrollParentRef, setScrollParentRef] = createSignal<HTMLDivElement>()

Expand Down

0 comments on commit 0b0ab2f

Please sign in to comment.