Skip to content

regression: svelte inline @render object #177

@lukeed

Description

@lukeed

This one is kinda gnarly, but unfortunately it's still valid svelte syntax & would expect the indentation to still be tracked & kept

0.23.4

<div>
	<div>
		{#if input}
			{@render input({
				value: ref.query,
				oninput: handleInput,
				onkeydown: handleKeydown,
				placeholder,
			})}
		{:else}
			<!-- ... -->
		{/if}
	</div>
</div>

0.25.3

<div>
	<div class="picker-input">
		{#if input}
			{@render input({
	value: ref.query,
	oninput: handleInput,
	onkeydown: handleKeydown,
	placeholder,
})}
		{:else}
			<!-- ... -->
		{/if}
	</div>
</div>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions