-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if_block0.p is not a function #5789
Comments
Please provide a runnable reproduction, preferably in the REPL, along with the steps to reproduce it. |
#5808 has a reproduction in a REPL for this same error. |
The problem seems to be the When quickly focusing<->unfocusing it breaks with the same error as is the reporters case. Screen.Recording.2020-12-27.at.15.39.54.movHere is a "fix" (more a workaround) which instead of Screen.Recording.2020-12-27.at.15.38.50.mov |
This is fixed in 3.31.2 - https://svelte.dev/repl/044e92510a0f48b399f03bbdec25ef63?version=3.31.2 |
I just encountered this in version {#if gui.fftBufferArray}
<pre>
{#each audio ?? [] as a, i}
{#if i > x}
<p style="color: hsl(0, 50%, 50%)">{a}</p>
{:else if i > y}
<p style="color: hsl(100, 50%, 50%)">{a}</p>
{:else if i > z}
<p style="color: hsl(200, 50%, 50%)">{a}</p>
{:else}
<p style="color: hsl(0, 0%, 50%)">{a}</p>
{/if}
{/each}
</pre>
{/if} Going to use a |
This happen on 3.49.0 too |
It still happens at |
Describe the bug
This Bug appears in Version 3.29.6
I assume that this is the breaking change: #5591
I have this code:
And removing
<li transition:slide|local>
fixes it.Logs
When running the code and the if statement is triggered I get this error in chrome:
Here is the error after disabling source maps:
on the line
if_block0.p(ctx, dirty);
the error is markedInformation about your Svelte project:
Severity
I just used another version for now
The text was updated successfully, but these errors were encountered: