We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf88597 commit bdb4bd7Copy full SHA for bdb4bd7
resources/views/partials/bootstrap-table.blade.php
@@ -664,12 +664,13 @@ function prettyLog(str) {
664
function minAmtFormatter(row, value) {
665
666
if ((row) && (row!=undefined)) {
667
+
668
if (value.remaining <= value.min_amt) {
669
return '<span class="text-danger text-bold" data-tooltip="true" title="{{ trans('admin/licenses/general.below_threshold_short') }}"><x-icon type="warning" class="text-yellow" /> ' + value.min_amt + '</span>';
670
}
671
return value.min_amt
672
-
673
+ return '--';
674
675
676
0 commit comments