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

Bug #205277 Fixed: BE> Report> 'Want to save this' functionality UI n… #242

Open
wants to merge 1 commit into
base: j4x
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions tjreports/site/views/reports/view.html.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ protected function addToolbar()
$bar->appendButton('CsvExport', $message);
}

$button = '<span id="btn-cancel">
$button = '<span id="btn-cancel" class="ms-2">
<input type="text" name="queryName" autocomplete="off" placeholder="Title for the Query" id="queryName" />
</span>
<a class="btn btn-primary saveData" type="button" id="saveQuery"
<a class="btn btn-primary saveData ms-2" type="button" id="saveQuery"
onclick="tjrContentUI.report.saveThisQuery();">'
. Text::_('COM_TJREPORTS_SAVE_THIS_QUERY') . '</a>

<button class="btn btn btn-default cancel-btn" type="button" onclick="tjrContentUI.report.cancel();">
<button class="btn btn btn-default cancel-btn ms-2" type="button" onclick="tjrContentUI.report.cancel();">
Cancel
</button>';

Expand Down