Skip to content

Commit 9fbfc79

Browse files
Enable WEB bible search
1 parent db21ad8 commit 9fbfc79

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

lib/models/bibles/web_bible.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'dart:developer';
21
import '../../common/enums.dart';
32
import '../json_to_bible.dart';
43
import '../search_result.dart';

lib/ui/views/search/search_view.dart

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,11 @@ class SearchView extends StackedView<SearchViewModel> {
6767
child: Text(
6868
viewModel.isBusy
6969
? ''
70-
: viewModel.getSearchResultMessage(viewModel.searchTerm, viewModel.searchSectionFilter,
71-
'KJV'), // TODO: viewModel.currentBible),
70+
: viewModel.getSearchResultMessage(
71+
viewModel.searchTerm,
72+
viewModel.searchSectionFilter,
73+
viewModel.currentBible,
74+
),
7275
style: TextStyle(
7376
color: context.theme.appColors.secondary,
7477
fontSize: 12.0,

0 commit comments

Comments
 (0)