🎨 Improve readability by reformatting the property filter dropdown code

This commit is contained in:
2026-01-28 19:54:17 +00:00
parent 66470d127c
commit e2259e79f0

View File

@@ -163,7 +163,11 @@
<!-- Property Filter -->
<div v-if="fileContent && jsonPaths.length > 0" class="property-filter">
<label for="property-select">Filter by Property:</label>
<select id="property-select" v-model="filterProperty" @change="onFilterChange">
<select
id="property-select"
v-model="filterProperty"
@change="onFilterChange"
>
<option value="">All Properties</option>
<option v-for="path in jsonPaths" :key="path" :value="path">
{{ path }}