Fakultas Ilmu Komputer UI
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ppl-fasilkom-ui
PPL Sosial
bisago
bisago-fe
Commits
df28babe
Commit
df28babe
authored
Jun 07, 2021
by
Dzaky Noor Hasyim
Browse files
[REFACTOR] Fix search not null issue on search_kegiatan
parent
31602215
Pipeline
#82016
passed with stages
in 14 minutes and 52 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/repository/kegiatan_repository.dart
View file @
df28babe
...
...
@@ -33,7 +33,7 @@ class KegiatanRepository implements BaseKegiatanRepository {
@override
Future
<
dynamic
>
fetchKegiatanSearch
(
String
search
,
String
sortConfig
)
async
{
var
url
=
'/informasi-fasilitas/lokasi/list-kegiatan-by-
$sortConfig
'
;
if
(
search
!=
null
){
if
(
search
!=
null
&&
search
!=
''
){
url
+=
'/
$search
'
;
}
final
response
=
await
_network
.
get
(
url:
url
,
isLogin:
false
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment