fix(prospecting): replace missing icons with available registry icons
map-pin→location-marker, target→cursor-click, device-mobile→phone, radar→globe-alt Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -91,7 +91,7 @@ prospecting_module = ModuleDefinition(
|
|||||||
MenuSectionDefinition(
|
MenuSectionDefinition(
|
||||||
id="prospecting",
|
id="prospecting",
|
||||||
label_key="prospecting.menu.prospecting",
|
label_key="prospecting.menu.prospecting",
|
||||||
icon="target",
|
icon="cursor-click",
|
||||||
order=60,
|
order=60,
|
||||||
items=[
|
items=[
|
||||||
MenuItemDefinition(
|
MenuItemDefinition(
|
||||||
@@ -111,21 +111,21 @@ prospecting_module = ModuleDefinition(
|
|||||||
MenuItemDefinition(
|
MenuItemDefinition(
|
||||||
id="leads",
|
id="leads",
|
||||||
label_key="prospecting.menu.leads",
|
label_key="prospecting.menu.leads",
|
||||||
icon="target",
|
icon="cursor-click",
|
||||||
route="/admin/prospecting/leads",
|
route="/admin/prospecting/leads",
|
||||||
order=10,
|
order=10,
|
||||||
),
|
),
|
||||||
MenuItemDefinition(
|
MenuItemDefinition(
|
||||||
id="capture",
|
id="capture",
|
||||||
label_key="prospecting.menu.capture",
|
label_key="prospecting.menu.capture",
|
||||||
icon="device-mobile",
|
icon="phone",
|
||||||
route="/admin/prospecting/capture",
|
route="/admin/prospecting/capture",
|
||||||
order=15,
|
order=15,
|
||||||
),
|
),
|
||||||
MenuItemDefinition(
|
MenuItemDefinition(
|
||||||
id="scan-jobs",
|
id="scan-jobs",
|
||||||
label_key="prospecting.menu.scan_jobs",
|
label_key="prospecting.menu.scan_jobs",
|
||||||
icon="radar",
|
icon="globe-alt",
|
||||||
route="/admin/prospecting/scan-jobs",
|
route="/admin/prospecting/scan-jobs",
|
||||||
order=20,
|
order=20,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -98,7 +98,7 @@
|
|||||||
<button @click="getLocation()"
|
<button @click="getLocation()"
|
||||||
:disabled="gettingLocation"
|
:disabled="gettingLocation"
|
||||||
class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-gray-200 rounded-lg hover:bg-gray-300 dark:text-gray-300 dark:bg-gray-700 disabled:opacity-50">
|
class="inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-gray-200 rounded-lg hover:bg-gray-300 dark:text-gray-300 dark:bg-gray-700 disabled:opacity-50">
|
||||||
<span x-html="$icon('map-pin', 'w-4 h-4 mr-2')"></span>
|
<span x-html="$icon('location-marker', 'w-4 h-4 mr-2')"></span>
|
||||||
<span x-text="gettingLocation ? 'Getting location...' : (form.location_lat ? 'Location saved' : 'Get Location')"></span>
|
<span x-text="gettingLocation ? 'Getting location...' : (form.location_lat ? 'Location saved' : 'Get Location')"></span>
|
||||||
</button>
|
</button>
|
||||||
<span x-show="form.location_lat" class="text-xs text-green-600">
|
<span x-show="form.location_lat" class="text-xs text-green-600">
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex items-center p-4 bg-white rounded-lg shadow dark:bg-gray-800">
|
<div class="flex items-center p-4 bg-white rounded-lg shadow dark:bg-gray-800">
|
||||||
<div class="p-3 mr-4 text-green-500 bg-green-100 rounded-full dark:text-green-100 dark:bg-green-500">
|
<div class="p-3 mr-4 text-green-500 bg-green-100 rounded-full dark:text-green-100 dark:bg-green-500">
|
||||||
<span x-html="$icon('target', 'w-5 h-5')"></span>
|
<span x-html="$icon('cursor-click', 'w-5 h-5')"></span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400">Top Priority</p>
|
<p class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400">Top Priority</p>
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex items-center p-4 bg-white rounded-lg shadow dark:bg-gray-800">
|
<div class="flex items-center p-4 bg-white rounded-lg shadow dark:bg-gray-800">
|
||||||
<div class="p-3 mr-4 text-purple-500 bg-purple-100 rounded-full dark:text-purple-100 dark:bg-purple-500">
|
<div class="p-3 mr-4 text-purple-500 bg-purple-100 rounded-full dark:text-purple-100 dark:bg-purple-500">
|
||||||
<span x-html="$icon('device-mobile', 'w-5 h-5')"></span>
|
<span x-html="$icon('phone', 'w-5 h-5')"></span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400">Offline Leads</p>
|
<p class="mb-2 text-sm font-medium text-gray-600 dark:text-gray-400">Offline Leads</p>
|
||||||
@@ -56,12 +56,12 @@
|
|||||||
<div class="flex flex-wrap gap-3 mb-6">
|
<div class="flex flex-wrap gap-3 mb-6">
|
||||||
<a href="/admin/prospecting/capture"
|
<a href="/admin/prospecting/capture"
|
||||||
class="inline-flex items-center px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700">
|
class="inline-flex items-center px-4 py-2 text-sm font-medium text-white bg-purple-600 rounded-lg hover:bg-purple-700">
|
||||||
<span x-html="$icon('device-mobile', 'w-4 h-4 mr-2')"></span>
|
<span x-html="$icon('phone', 'w-4 h-4 mr-2')"></span>
|
||||||
Quick Capture
|
Quick Capture
|
||||||
</a>
|
</a>
|
||||||
<button @click="runBatchScan()"
|
<button @click="runBatchScan()"
|
||||||
class="inline-flex items-center px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded-lg hover:bg-blue-700">
|
class="inline-flex items-center px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded-lg hover:bg-blue-700">
|
||||||
<span x-html="$icon('radar', 'w-4 h-4 mr-2')"></span>
|
<span x-html="$icon('globe-alt', 'w-4 h-4 mr-2')"></span>
|
||||||
Run Batch Scan
|
Run Batch Scan
|
||||||
</button>
|
</button>
|
||||||
<button @click="showImportModal = true"
|
<button @click="showImportModal = true"
|
||||||
|
|||||||
@@ -52,7 +52,7 @@
|
|||||||
</select>
|
</select>
|
||||||
<button @click="runEnrichment()" x-show="prospect.channel === 'digital'"
|
<button @click="runEnrichment()" x-show="prospect.channel === 'digital'"
|
||||||
class="ml-auto px-3 py-1 text-sm text-white bg-blue-600 rounded-lg hover:bg-blue-700">
|
class="ml-auto px-3 py-1 text-sm text-white bg-blue-600 rounded-lg hover:bg-blue-700">
|
||||||
<span x-html="$icon('radar', 'w-4 h-4 inline mr-1')"></span>
|
<span x-html="$icon('globe-alt', 'w-4 h-4 inline mr-1')"></span>
|
||||||
Run Scan
|
Run Scan
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
</button>
|
</button>
|
||||||
<button @click="startBatchJob('score_compute')"
|
<button @click="startBatchJob('score_compute')"
|
||||||
class="inline-flex items-center px-4 py-2 text-sm font-medium text-white bg-red-600 rounded-lg hover:bg-red-700">
|
class="inline-flex items-center px-4 py-2 text-sm font-medium text-white bg-red-600 rounded-lg hover:bg-red-700">
|
||||||
<span x-html="$icon('target', 'w-4 h-4 mr-2')"></span>
|
<span x-html="$icon('cursor-click', 'w-4 h-4 mr-2')"></span>
|
||||||
Compute Scores
|
Compute Scores
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user