Coder Social home page Coder Social logo

airflow-2-demo-api's People

Contributors

marclamberti avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

spudnik99

airflow-2-demo-api's Issues

home page showing errors

TypeError: Cannot read properties of undefined (reading 'map')
Variables
src/components/Variables.js:32
29 | )
30 | }
31 |

32 | const variableTable = variables.map((variable,index) => VariableRow(variable, withDags, index))
| ^ 33 |
34 | return(
35 |


View compiled
renderWithHooks
node_modules/react-dom/cjs/react-dom.development.js:14803
14800 | }
14801 | }
14802 |
14803 | var children = Component(props, secondArg); // Check if there was a render phase update
| ^ 14804 |
14805 | if (workInProgress.expirationTime === renderExpirationTime) {
14806 | // Keep rendering in a loop for as long as render phase updates continue to
View compiled
updateFunctionComponent
node_modules/react-dom/cjs/react-dom.development.js:17034
17031 | {
17032 | ReactCurrentOwner$1.current = workInProgress;
17033 | setIsRendering(true);
17034 | nextChildren = renderWithHooks(current, workInProgress, Component, nextProps, context, renderExpirationTime);
| ^ 17035 |
17036 | if ( workInProgress.mode & StrictMode) {
17037 | // Only double-render components with Hooks
View compiled
beginWork
node_modules/react-dom/cjs/react-dom.development.js:18610
18607 | var _Component = workInProgress.type;
18608 | var unresolvedProps = workInProgress.pendingProps;
18609 | var resolvedProps = workInProgress.elementType === _Component ? unresolvedProps : resolveDefaultProps(_Component, unresolvedProps);
18610 | return updateFunctionComponent(current, workInProgress, _Component, resolvedProps, renderExpirationTime);
| ^ 18611 | }
18612 |
18613 | case ClassComponent:
View compiled
HTMLUnknownElement.callCallback
node_modules/react-dom/cjs/react-dom.development.js:188
185 | window.event = windowEvent;
186 | }
187 |
188 | func.apply(context, funcArgs);
| ^ 189 | didError = false;
190 | } // Create a global error event handler. We use this to capture the value
191 | // that was thrown. It's possible that this error handler will fire more
View compiled
invokeGuardedCallbackDev
node_modules/react-dom/cjs/react-dom.development.js:237
234 | // errors, it will trigger our global error handler.
235 |
236 | evt.initEvent(evtType, false, false);
237 | fakeNode.dispatchEvent(evt);
| ^ 238 |
239 | if (windowEventDescriptor) {
240 | Object.defineProperty(window, 'event', windowEventDescriptor);
View compiled
invokeGuardedCallback
node_modules/react-dom/cjs/react-dom.development.js:292
289 | function invokeGuardedCallback(name, func, context, a, b, c, d, e, f) {
290 | hasError = false;
291 | caughtError = null;
292 | invokeGuardedCallbackImpl$1.apply(reporter, arguments);
293 | }
294 | /**
295 | * Same as invokeGuardedCallback, but instead of returning an error, it stores
View compiled
beginWork$1
node_modules/react-dom/cjs/react-dom.development.js:23203
23200 | } // Run beginWork again.
23201 |
23202 |
23203 | invokeGuardedCallback(null, beginWork, null, current, unitOfWork, expirationTime);
| ^ 23204 |
23205 | if (hasCaughtError()) {
23206 | var replayError = clearCaughtError(); // invokeGuardedCallback sometimes sets an expando _suppressLogging.
View compiled
performUnitOfWork
node_modules/react-dom/cjs/react-dom.development.js:22157
22154 | next = beginWork$1(current, unitOfWork, renderExpirationTime$1);
22155 | stopProfilerTimerIfRunningAndRecordDelta(unitOfWork, true);
22156 | } else {
22157 | next = beginWork$1(current, unitOfWork, renderExpirationTime$1);
| ^ 22158 | }
22159 |
22160 | resetCurrentFiber();
View compiled
workLoopSync
node_modules/react-dom/cjs/react-dom.development.js:22130
22127 | function workLoopSync() {
22128 | // Already timed out, so perform work without checking if we need to yield.
22129 | while (workInProgress !== null) {
22130 | workInProgress = performUnitOfWork(workInProgress);
22131 | }
22132 | }
22133 | /** @noinline /
View compiled
performSyncWorkOnRoot
node_modules/react-dom/cjs/react-dom.development.js:21756
21753 |
21754 | do {
21755 | try {
21756 | workLoopSync();
| ^ 21757 | break;
21758 | } catch (thrownValue) {
21759 | handleError(root, thrownValue);
View compiled
(anonymous function)
node_modules/react-dom/cjs/react-dom.development.js:11089
11086 | var callback = queue[i];
11087 |
11088 | do {
11089 | callback = callback(_isSync);
| ^ 11090 | } while (callback !== null);
11091 | }
11092 | });
View compiled
unstable_runWithPriority
node_modules/scheduler/cjs/scheduler.development.js:653
650 | currentPriorityLevel = priorityLevel;
651 |
652 | try {
653 | return eventHandler();
| ^ 654 | } finally {
655 | currentPriorityLevel = previousPriorityLevel;
656 | }
View compiled
runWithPriority$1
node_modules/react-dom/cjs/react-dom.development.js:11039
11036 |
11037 | function runWithPriority$1(reactPriorityLevel, fn) {
11038 | var priorityLevel = reactPriorityToSchedulerPriority(reactPriorityLevel);
11039 | return Scheduler_runWithPriority(priorityLevel, fn);
11040 | }
11041 | function scheduleCallback(reactPriorityLevel, callback, options) {
11042 | var priorityLevel = reactPriorityToSchedulerPriority(reactPriorityLevel);
View compiled
flushSyncCallbackQueueImpl
node_modules/react-dom/cjs/react-dom.development.js:11084
11081 | try {
11082 | var _isSync = true;
11083 | var queue = syncQueue;
11084 | runWithPriority$1(ImmediatePriority, function () {
| ^ 11085 | for (; i < queue.length; i++) {
11086 | var callback = queue[i];
11087 |
View compiled
flushSyncCallbackQueue
node_modules/react-dom/cjs/react-dom.development.js:11072
11069 | Scheduler_cancelCallback(node);
11070 | }
11071 |
11072 | flushSyncCallbackQueueImpl();
11073 | }
11074 |
11075 | function flushSyncCallbackQueueImpl() {
View compiled
scheduleUpdateOnFiber
node_modules/react-dom/cjs/react-dom.development.js:21199
21196 | // scheduleCallbackForFiber to preserve the ability to schedule a callback
21197 | // without immediately flushing it. We only do this for user-initiated
21198 | // updates, to preserve historical behavior of legacy mode.
21199 | flushSyncCallbackQueue();
| ^ 21200 | }
21201 | }
21202 | } else {
View compiled
enqueueSetState
node_modules/react-dom/cjs/react-dom.development.js:12639
12636 | }
12637 |
12638 | enqueueUpdate(fiber, update);
12639 | scheduleWork(fiber, expirationTime);
| ^ 12640 | },
12641 | enqueueReplaceState: function (inst, payload, callback) {
12642 | var fiber = get(inst);
View compiled
App.push../node_modules/react/cjs/react.development.js.Component.setState
node_modules/react/cjs/react.development.js:471
468 | }
469 | }
470 |
471 | this.updater.enqueueSetState(this, partialState, callback, 'setState');
472 | };
473 | /
*
474 | * Forces an update. This should only be invoked when it is known with
View compiled
(anonymous function)
src/App.js:40
37 | getAllVariables()
38 | .then(variables => {
39 | console.log(variables)
40 | this.setState({variables: variables, numberOfVariables: variables.total_entries})
| ^ 41 | });
42 | }
43 |

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.