Add thumbnailRendering to DICOMWeb Server Information modal

This commit is contained in:
Erik Ziegler 2018-07-11 17:15:06 +02:00
parent 5bf1459561
commit 8cc22da173
2 changed files with 14 additions and 2 deletions

View File

@ -58,8 +58,16 @@ export const DICOMWebServer = new SimpleSchema({
imageRendering: {
type: String,
label: 'Image rendering',
allowedValues: ['wadouri', 'orthanc'],
valuesLabels: ['WADO URI', 'ORTHANC']
allowedValues: ['wadouri', 'wadors', 'orthanc'],
valuesLabels: ['WADO URI', 'WADO RS', 'ORTHANC'],
defaultValue: 'wadouri'
},
thumbnailRendering: {
type: String,
label: 'Thumbnail rendering',
allowedValues: ['wadouri', 'wadors', 'orthanc'],
valuesLabels: ['WADO URI', 'WADO RS', 'ORTHANC'],
defaultValue: 'wadouri'
},
qidoRoot: {
type: String,

View File

@ -10,6 +10,10 @@
{{>inputSelect labelClass='form-group' key='imageRendering' hideSearch=true
options=(clone placeholder='Select an option')}}
</div>
<div class="col-lg-6">
{{>inputSelect labelClass='form-group' key='thumbnailRendering' hideSearch=true
options=(clone placeholder='Select an option')}}
</div>
<div class="col-lg-6">
{{>inputText labelClass='form-group' key='qidoRoot'}}
</div>