File tree 4 files changed +5
-6
lines changed
4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ export default defineComponent({
194
194
this . grabAllProfiles ( this . $t ( 'Profile.All Channels' ) ) . then ( async ( ) => {
195
195
this . grabHistory ( )
196
196
this . grabAllPlaylists ( )
197
- this . grabPageBookmarks ( ) . then ( async ( ) => {
197
+ this . grabPageBookmarks ( ) . then ( ( ) => {
198
198
this . pageBookmarksAvailable = true
199
199
} )
200
200
this . grabAllSubscriptions ( )
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export default defineComponent({
85
85
isPointerInList : false ,
86
86
keyboardSelectedOptionIndex : - 1 ,
87
87
} ,
88
- visibleDataList : this . dataList ? .slice ( 0 , MAX_VISIBLE_LIST_ITEMS ) ,
88
+ visibleDataList : this . dataList . slice ( 0 , MAX_VISIBLE_LIST_ITEMS ) ,
89
89
// This button should be invisible on app start
90
90
// As the text input box should be empty
91
91
clearTextButtonExisting : false ,
@@ -310,13 +310,13 @@ export default defineComponent({
310
310
this . searchState . selectedOption = - 1
311
311
this . searchState . keyboardSelectedOptionIndex = - 1
312
312
if ( this . inputData === '' ) {
313
- this . visibleDataList = this . dataList ? .slice ( 0 , MAX_VISIBLE_LIST_ITEMS )
313
+ this . visibleDataList = this . dataList . slice ( 0 , MAX_VISIBLE_LIST_ITEMS )
314
314
return
315
315
}
316
316
// get list of items that match input
317
317
const lowerCaseInputData = this . inputData . toLowerCase ( )
318
318
319
- this . visibleDataList = this . dataList ? .slice ( 0 , MAX_VISIBLE_LIST_ITEMS ) . filter ( x => {
319
+ this . visibleDataList = this . dataList . slice ( 0 , MAX_VISIBLE_LIST_ITEMS ) . filter ( x => {
320
320
if ( x . name ) {
321
321
return x . name . toLowerCase ( ) . indexOf ( lowerCaseInputData ) !== - 1
322
322
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { mapActions } from 'vuex'
3
3
import FtFlexBox from '../ft-flex-box/ft-flex-box.vue'
4
4
import FtPrompt from '../ft-prompt/ft-prompt.vue'
5
5
import FtButton from '../ft-button/ft-button.vue'
6
- import FtInput from '../../components/ ft-input/ft-input.vue'
6
+ import FtInput from '../ft-input/ft-input.vue'
7
7
import packageDetails from '../../../../package.json'
8
8
import { showToast } from '../../helpers/utils'
9
9
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ export default defineComponent({
54
54
'Watch' ,
55
55
'Hashtag' ,
56
56
'Post' ,
57
- 'Settings' // for linkable settings sections
58
57
] ,
59
58
lastSuggestionQuery : ''
60
59
}
You can’t perform that action at this time.
0 commit comments