Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/@angular-devkit/build-angular/src/utils/action-executor.js

    r59329aa re29cc2e  
    6363        for (const action of actions) {
    6464            const execution = executor(action);
    65             executions.set(execution, execution.then((result) => {
    66                 executions.delete(execution);
    67                 return result;
    68             }));
     65            executions.set(execution, execution.then((result) => [execution, result]));
    6966        }
    7067        while (executions.size > 0) {
    71             yield Promise.race(executions.values());
     68            const [execution, result] = await Promise.race(executions.values());
     69            executions.delete(execution);
     70            yield result;
    7271        }
    7372    }
Note: See TracChangeset for help on using the changeset viewer.