DEV: Fix syntax for outletArgs in header component (#31220)

The parenthesis were causing minimized to return undefined
This commit is contained in:
Kris
2025-02-06 11:32:33 -05:00
committed by GitHub
parent fe4c33323f
commit a38a1393b5

View File

@@ -315,7 +315,7 @@ export default class GlimmerHeader extends Component {
</div>
<PluginOutlet
@name="after-header"
@outletArgs={{hash minimized=(@topicInfoVisible)}}
@outletArgs={{hash minimized=@topicInfoVisible}}
/>
</header>
</template>