Merges front-end changes from master -> DSS-5178 DSS-5577 DSS-5677 DSS-5277 DSS-5677

This commit is contained in:
Seyi Adebajo 2016-12-05 23:53:05 -08:00 committed by Mars Lan
parent 3c6415390a
commit 02cbf8377a
2 changed files with 8 additions and 2 deletions

View File

@ -1485,7 +1485,7 @@
<div class="field-names">
<h4>Field Names</h4>
<input type="text"
id="compliance-typeahead"
id="confidential-typeahead"
class="field-search__input form-control"
placeholder="Filter field names...">
</div>

View File

@ -156,8 +156,14 @@ App.DatasetRoute = Ember.Route.extend({
* @param {number} id
*/
const createSecuritySpecification = id => {
const classification = [
'highlyConfidential', 'confidential', 'limitedDistribution', 'mustBeEncrypted', 'mustBeMasked'
].reduce((classification, classifier) => {
classification[classifier] = [];
return classification;
}, {});
const securitySpecification = {
classification: null,
classification,
datasetId: id,
geographicAffinity: {affinity: ''},
recordOwnerType: '',