Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ID to HTML Elements in the Geospatial Feature #34573

Merged
merged 2 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions corehq/apps/geospatial/templates/case_grouping_map.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="col col-md-2">
<span id="lock-groups-controls">
<div class="controls">
<button data-bind="visible: !groupsLocked(), click: toggleGroupLock" class="btn-default form-control">
<button id="lock-case-grouping-btn" data-bind="visible: !groupsLocked(), click: toggleGroupLock" class="btn-default form-control">
<i class="fa fa-lock"></i>
{% trans "Lock Case Grouping for Me" %}
</button>
Expand All @@ -22,7 +22,7 @@
<div class="col col-md-2">
<span id="export-controls">
<div class="controls">
<button class="btn-default form-control" data-bind="click: downloadCSV, disable: !groupsReady()">
<button id="export-groups-btn" class="btn-default form-control" data-bind="click: downloadCSV, disable: !groupsReady()">
{% trans "Export Groups" %}
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion corehq/apps/geospatial/templates/gps_capture.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h3 class="panel-title">
<button type="button" class="btn btn-default" data-bind="event: {click: $root.captureLocationForItem.bind($data)}, disable: $root.isCreatingCase">
{% trans "Capture on Map" %}
</button>
<button type="button" class="btn btn-primary" data-bind="enable: canSaveRow, event: {click: $root.saveDataRow.bind($data)}">
<button id="save-row-btn" type="button" class="btn btn-primary" data-bind="enable: canSaveRow, event: {click: $root.saveDataRow.bind($data)}">
{% trans "Save" %}
</button>
</td>
Expand Down