comparison OrthancServer/OrthancExplorer/explorer.js @ 5248:a7d95f951f8a db-protobuf

replaced "WithLabels" and "WithoutLabels", by "Labels" and "LabelsConstraint"
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 Apr 2023 22:18:37 +0200
parents b36f82260f41
children 4718452c4909
comparison
equal deleted inserted replaced
5247:eb2684260c19 5248:a7d95f951f8a
564 else if (input.id == 'lookup-study-date-specific') { 564 else if (input.id == 'lookup-study-date-specific') {
565 // Ignore 565 // Ignore
566 } 566 }
567 else if (input.id == 'lookup-study-labels') { 567 else if (input.id == 'lookup-study-labels') {
568 // New in Orthanc 1.12.0 568 // New in Orthanc 1.12.0
569 lookup['WithLabels'] = input.value.split(' '); 569 lookup['Labels'] = input.value.split(' ');
570 } 570 }
571 else { 571 else {
572 console.error('Unknown lookup field: ' + input.id); 572 console.error('Unknown lookup field: ' + input.id);
573 } 573 }
574 } 574 }