You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A clear and concise description of what the bug is.
🔬 Minimal Reproduction
Describe steps to reproduce. If possible, please create a PR with a failing test as described in CONTRIBUTING.md.
😕 Actual Behavior
A short line (33 cols) is being reformatted to two lines: {{driveTime}} minute becomes
{{driveTime}}
minute
full example:
importComponentfrom'@glimmer/component';
importpowerSelectfrom'ember-power-select/components/power-select';
import { driveTimeOptions } from'my-app/constants';
exportdefaultclassSearchFormextendsComponent {
// ...
<template>
<div>
<h2>
Your Search
</h2>
<form>
Show me results with
<div>
<powerSelect@dropdownClass='text-trigger'@triggerClass='_trigger'@matchTriggerWidth={{false}}@name='time'@onChange={{this.updateDriveTime}}@options={{driveTimeOptions}}@placeholder='15 minute'@searchEnabled={{false}}@selected={{this.driveTime}} as|driveTime|
>
{{driveTime}} minute {{! This goes to two lines with prettier, but why? }}
</powerSelect>
</div>
</template>
}
🐞 Describe the Bug
A clear and concise description of what the bug is.
🔬 Minimal Reproduction
Describe steps to reproduce. If possible, please create a PR with a failing test as described in
CONTRIBUTING.md
.😕 Actual Behavior
A short line (33 cols) is being reformatted to two lines:
{{driveTime}} minute
becomesfull example:
🌍 Environment
➕ Additional Context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: