🎨 Improve readability by reformatting the property filter dropdown code
This commit is contained in:
@@ -163,7 +163,11 @@
|
|||||||
<!-- Property Filter -->
|
<!-- Property Filter -->
|
||||||
<div v-if="fileContent && jsonPaths.length > 0" class="property-filter">
|
<div v-if="fileContent && jsonPaths.length > 0" class="property-filter">
|
||||||
<label for="property-select">Filter by Property:</label>
|
<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 value="">All Properties</option>
|
||||||
<option v-for="path in jsonPaths" :key="path" :value="path">
|
<option v-for="path in jsonPaths" :key="path" :value="path">
|
||||||
{{ path }}
|
{{ path }}
|
||||||
|
|||||||
Reference in New Issue
Block a user