Skip to content

Commit d073778

Browse files
authored
Merge pull request #99 from rtCamp/ui-fixes
fix: update description and add id on web element
2 parents 279ad96 + d9bd363 commit d073778

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

frappe_crm_xt/patches/v1_0/clear_calendar_field_descriptions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@
44
"custom_start_datetime",
55
"custom_sync_with_calendar",
66
"custom_google_calendar_link",
7+
"custom_slack_channel_link",
8+
"custom_original_hourly_rate_exchange_rate",
9+
"custom_effective_hourly_rate_exchange_rate",
710
)
811

912

1013
def execute():
1114
names = frappe.get_all(
1215
"Custom Field",
1316
filters={
14-
"dt": "CRM Task",
17+
"dt": ["in", ("CRM Task", "CRM Deal")],
1518
"fieldname": ["in", FIELDNAMES],
1619
"description": ["is", "set"],
1720
},

frontend/src/components/SearchDialog.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@
4343
</svg>
4444
</div>
4545
<input
46+
id="crm-xt-search-input"
4647
ref="inputRef"
4748
v-model="query"
4849
type="text"
50+
name="crm-xt-search"
4951
placeholder="CRM Search"
5052
autocomplete="off"
5153
class="text-base rounded h-7 py-1.5 pl-8 pr-2 border border-outline-gray-2 bg-surface-base placeholder-ink-gray-4 hover:border-outline-gray-3 hover:shadow-sm focus:bg-surface-base focus:border-outline-gray-4 focus:shadow-sm focus:ring-0 focus-visible:ring-2 focus-visible:ring-outline-gray-3 text-ink-gray-8 transition-colors w-full"

0 commit comments

Comments
 (0)