-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent Add/Change CRF button wrapping on whitespace
- Loading branch information
1 parent
f33a680
commit 9644539
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<a title="{{ label|default:"Add CRF"}}" role="button" class="button" href="{{ url }}">Add CRF</a> | ||
<a title="{{ label|default:"Add CRF"}}" role="button" class="button" style="white-space: nowrap" href="{{ url }}">Add CRF</a> |
2 changes: 1 addition & 1 deletion
2
edc_qareports/templates/edc_qareports/columns/change_button.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<a title="{{ title|default:"Change CRF"}}" role="button" class="button" href="{{ url }}">{{ label|default:"Change CRF" }}</a> | ||
<a title="{{ title|default:"Change CRF"}}" role="button" class="button" style="white-space: nowrap" href="{{ url }}">{{ label|default:"Change CRF" }}</a> |