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

FIX Use correct template syntax #317

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/Colymba/BulkManager/BulkManagerButtons.ss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<a data-url="$Button.DataURL"
data-config="$Button.DataConfig"
title="<% _t('GRIDFIELD_BULK_MANAGER.COMPONENT_TITLE', 'Modify one or more entry at a time') %>"
title="<%t GRIDFIELD_BULK_MANAGER.COMPONENT_TITLE 'Modify one or more entry at a time' %>"
class="doBulkActionButton disabled btn btn-outline-secondary">
$Button.Label
</a>
Expand All @@ -17,7 +17,7 @@
<label class="form-check-label">
<input class="no-change-track bulkSelectAll form-check-input"
type="checkbox"
title="<% _t('GRIDFIELD_BULK_MANAGER.SELECT_ALL_LABEL', '$Select.Label') %>"
title="<%t GRIDFIELD_BULK_MANAGER.SELECT_ALL_LABEL '$Select.Label' %>"
name="toggleSelectAll" />
</label>
</th>
Expand Down
Loading