mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 16:44:08 -08:00
Removed logging
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
b5603fbfe9
commit
92eff653f1
|
@ -625,13 +625,9 @@
|
||||||
function minAmtFormatter(row, value) {
|
function minAmtFormatter(row, value) {
|
||||||
|
|
||||||
if ((row) && (row!=undefined)) {
|
if ((row) && (row!=undefined)) {
|
||||||
console.log(row.free_seats_count);
|
|
||||||
console.log(row.min_amt);
|
|
||||||
|
|
||||||
if (value.free_seats_count <= value.min_amt) {
|
if (value.free_seats_count <= value.min_amt) {
|
||||||
return '<span class="text-danger text-bold" data-tooltip="true" title="{{ trans('admin/licenses/general.below_threshold_short') }}">' + value.min_amt + '</span>';
|
return '<span class="text-danger text-bold" data-tooltip="true" title="{{ trans('admin/licenses/general.below_threshold_short') }}">' + value.min_amt + '</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
return value.min_amt
|
return value.min_amt
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue