File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,12 +36,11 @@ export default class IndexController extends Controller {
3636 ) ;
3737 }
3838
39- @ task ( function * ( term ) {
40- yield timeout ( 250 ) ;
39+ searchWerkingsgebied = task ( async ( term ) => {
40+ await timeout ( 250 ) ;
4141 let queryParams = { 'filter[naam]' : term } ;
4242 return this . store . query ( 'werkingsgebied' , queryParams ) ;
43- } )
44- searchWerkingsgebied ;
43+ } ) ;
4544
4645 flushQueryParams ( step ) {
4746 this . bestuursorgaanId = '' ;
Original file line number Diff line number Diff line change 11{{ page-title " Mandatendatabank Vlaanderen" }}
22
33<AuModalContainer />
4+ <BasicDropdownWormhole />
45
56<AuMainHeader @brandLink =" https://mandaten.lokaalbestuur.vlaanderen.be/" @homeRoute =" index" @appTitle =" Mandatendatabank" @contactRoute =" contact" >
67</AuMainHeader >
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ const EmberApp = require('ember-cli/lib/broccoli/ember-app');
44
55module . exports = function ( defaults ) {
66 const app = new EmberApp ( defaults , {
7+ babel : {
8+ plugins : [
9+ // ... any other plugins
10+ require . resolve ( 'ember-concurrency/async-arrow-task-transform' ) ,
11+
12+ // NOTE: put any code coverage plugins last, after the transform.
13+ ] ,
14+ } ,
715 '@embroider/macros' : {
816 setConfig : {
917 '@appuniversum/ember-appuniversum' : {
You can’t perform that action at this time.
0 commit comments