If condition in Loop - V6

on page I have code

${mydata.Works.map((Work) => $h`
    ${(Work.isReady === "true") && $h`
        <li>
            <div class="item-content">
                <div class="item-inner">
                    <div class="item-title-row">

                        <div style="overflow: visible;">
                            ${Work.Name}
                        </div>
                        <div class="item-after"></div>
                    </div>
                </div>
            </div>
        </li>
    &grave;}
&grave;)}

${(Work.isReady === “true”) && $h` working like condition but in the same time its writing value Work.isReady

so my question is: what is correct way to write conditions F7v6 ? because classic literal not working :frowning:

${(Work.isReady === "true") ? $h`<li>...</li>` : ``}
${(Work.isReady === "true") ? $h`
  <li>
    ...
  </li>
` : ``}

where do i find the documentation with these changes?

if i created with cli is necessary these configurations?

no, new CLI creates latest v6 project. If you created it with old CLI (F7 v5 project) then yes

1 Like

thanks nolimits4web :slightly_smiling_face: framework7 is amazing