From a6b42459cab91b21ccfc02be51ece0d032c5472c Mon Sep 17 00:00:00 2001 From: Ryan Birmingham Date: Tue, 12 Sep 2023 14:23:24 -0400 Subject: [PATCH] change alias for x, y, w, h --- apps/labeling/labelReview.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/labeling/labelReview.js b/apps/labeling/labelReview.js index 17032f4c3..94ce3cd6c 100644 --- a/apps/labeling/labelReview.js +++ b/apps/labeling/labelReview.js @@ -758,7 +758,7 @@ function setDownloadModalProgress(num) { function labelInfoToHtml(label){ let text = "" // top level fields - if (label.alias){ + if (false && label.alias){ text += "Alias: " text += label.alias text += "
" @@ -784,7 +784,7 @@ function labelInfoToHtml(label){ text += label.task text += "
" } - let skip_props = ['style', 'x', 'y', 'width', 'height'] + let skip_props = ['style'] // now go through properties for (let propkey in label.properties){ if (skip_props.indexOf(propkey) == -1){ @@ -820,4 +820,4 @@ function getLabelInfo(e){ }); let texts = matched_labels.map(labelInfoToHtml) document.getElementById('label_review').innerHTML = texts.join("


") -} \ No newline at end of file +}