vuetify: update mdi icon set
This commit is contained in:
@ -28,7 +28,7 @@
|
||||
<v-col cols="5" class="px-8">
|
||||
<v-text-field
|
||||
v-model="search"
|
||||
append-icon="search"
|
||||
append-icon="mdi-magnify"
|
||||
label="Search"
|
||||
single-line
|
||||
hide-details
|
||||
@ -74,7 +74,7 @@
|
||||
<v-col cols="5" class="px-8">
|
||||
<v-text-field
|
||||
v-model="search"
|
||||
append-icon="search"
|
||||
append-icon="mdi-magnify"
|
||||
label="Search"
|
||||
single-line
|
||||
hide-details
|
||||
@ -157,15 +157,23 @@
|
||||
<td class="grey--text">Materials</td>
|
||||
<td>{{ selectedCatalog.materials }}</td>
|
||||
</tr>
|
||||
<tr v-if="selectedCatalog.public">
|
||||
<tr>
|
||||
<td class="grey--text">Public</td>
|
||||
<td>
|
||||
<span class="group"><v-icon color="blue">group</v-icon></span></td>
|
||||
<span class="group">
|
||||
<v-icon v-if="selectedCatalog.public" color="black">mdi-checkbox-marked-outline</v-icon>
|
||||
<v-icon v-else color="black">mdi-checkbox-blank-outline</v-icon>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr v-if="selectedCatalog.show_prices">
|
||||
<tr>
|
||||
<td class="grey--text">Show prices</td>
|
||||
<td>
|
||||
<span class="group"><v-icon color="green">monetization_on</v-icon></span></td>
|
||||
<span class="group">
|
||||
<v-icon v-if="selectedCatalog.show_prices" color="black">mdi-checkbox-marked-outline</v-icon>
|
||||
<v-icon v-else color="black">mdi-checkbox-blank-outline</v-icon>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr v-if="selectedCatalog.build_progress < 100">
|
||||
<td class="grey--text">PDF Build</td>
|
||||
|
||||
Reference in New Issue
Block a user