fixed weird phrasing in asset checkout screen

This commit is contained in:
akemidx 2023-02-15 16:47:48 -05:00
parent 1520c9c6a7
commit b96f2f738d
2 changed files with 2 additions and 2 deletions

View file

@ -91,7 +91,7 @@
<div class="box box-primary">
<div class="box-header with-border">
<h2 class="box-title">{{ trans('admin/users/general.current_assets') }}</h2>
</div>
</div>
<div class="box-body">
<div id="current_assets_content">
</div>

View file

@ -60,7 +60,7 @@
table_html += "</tr>";
}
} else {
table_html += '<tr><td colspan="4">No assets checked out to '+ $('.js-data-user-ajax').find('option:selected').text() + ' yet!</td></tr>';
table_html += '<tr><td colspan="4">No assets checked out to this user yet!</td></tr>';
}
$('#current_assets_content').html(table_html + '</tbody></table></div></div>');