Change Autotask link modal button label from "Refresh" to "Search"

The button in the "Link existing Autotask ticket" modal performed a search
operation but was labeled "Refresh", which was confusing. Renamed to "Search"
to accurately reflect its functionality.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Ivo Oskamp 2026-02-06 11:10:58 +01:00
parent b0ed6c6fe2
commit 66ee14ca18
2 changed files with 6 additions and 1 deletions

View File

@ -308,7 +308,7 @@
<div class="modal-body"> <div class="modal-body">
<div class="d-flex gap-2 mb-2"> <div class="d-flex gap-2 mb-2">
<input type="text" class="form-control" id="atl_search" placeholder="Search by ticket number or title" /> <input type="text" class="form-control" id="atl_search" placeholder="Search by ticket number or title" />
<button type="button" class="btn btn-outline-secondary" id="atl_refresh">Refresh</button> <button type="button" class="btn btn-outline-secondary" id="atl_refresh">Search</button>
</div> </div>
<div class="small text-muted mb-2" id="atl_status"></div> <div class="small text-muted mb-2" id="atl_status"></div>
<div class="table-responsive"> <div class="table-responsive">

View File

@ -2,6 +2,11 @@
This file documents all changes made to this project via Claude Code. This file documents all changes made to this project via Claude Code.
## [2026-02-06]
### Changed
- Renamed "Refresh" button to "Search" in Link existing Autotask ticket modal for better clarity (the button performs a search operation)
## [2026-02-05] ## [2026-02-05]
### Added ### Added