After inspect code from my PyCharm. It warns me as
Closing tag matches nothing at last </p>
tag
But I didn't find any wrong my code. p tag is closed correctly.
<p v-if="files.length">
<ul>
<li v-for="file in files">
{{file.name}} <span v-if="file.success"> - success. </span><span v-if="file.error"> - fail. </span>
<span v-if="file.success || file.error">{{file.xhr.responseText}}</span>
</li>
</ul>
</p>
How can I resolve this warning correctly?