Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
mehm8128 committed Nov 16, 2023
1 parent 36af898 commit 1593321
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/Main/CommandPalette/SearchSuggestion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,16 @@ const querySuggestions = computed(() => [
{
insertQuery: 'before:',
description: '特定の日時以前のメッセージ',
example: `before:2020-01-23${!isMobile.value ? ', before:2020-01-23T00:00' : ''}`
example: `before:2020-01-23${
!isMobile.value ? ', before:2020-01-23T00:00' : ''
}`
},
{
insertQuery: 'after:',
description: '特定の日時以降のメッセージ',
example: `after:2020-01-23${!isMobile.value ? ', after:2020-01-23T00:00' : ''}`
example: `after:2020-01-23${
!isMobile.value ? ', after:2020-01-23T00:00' : ''
}`
}
])
Expand Down

0 comments on commit 1593321

Please sign in to comment.