HEX
Server: Apache/2.4.65 (Debian)
System: Linux wordpress-7cb4c6b6f6-dr82f 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: www-data (33)
PHP: 8.3.27
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/jet-engine/templates/forms/admin/components/post-field-control.php
<div class="jet-post-field-control">
	<select :value="fieldType" @input="setField( $event, 'field_type' )" style="width: 160px;">
		<option v-for="( fieldLabel, fieldKey ) in fields" :value="fieldKey">{{ fieldLabel }}</option>
	</select>
	<input
		type="text"
		v-if="metaProp === fieldType"
		:value="fieldName"
		@input="setField( $event, 'field_name' )"
		style="width: 200px;"
	>
	<select
		v-if="termsProp === fieldType"
		:value="fieldName"
		@input="setField( $event, 'field_name' )"
		style="width: 160px;"
	>
		<option
			v-for="( taxName, taxSlug ) in taxonomies"
			:value="'jet_tax__' + taxSlug"
		>{{ taxName }}</option>
	</select>
</div>