Project

General

Profile

« Previous | Next » 

Revision 51561

added inline validation messages to create-update repository forms

View differences:

datasource-interface-form.component.ts
62 62
    if (this.data && this.data.length) {
63 63
      this.currentInterface = this.data[0];
64 64
      this.patchData.next({
65
          baseUrl: this.data[0].baseUrl,
65
          baseUrl: decodeURIComponent(this.data[0].baseUrl),
66 66
          selectValidationSet: '',
67 67
          customValidationSet: '',
68 68
          compatibilityLevel:this.data[0].desiredCompatibilityLevel
......
190 190
    this.loadingMessage = formSubmitting;
191 191
    this.currentInterface.baseUrl = baseUrl;
192 192
    this.currentInterface.accessSet = valset;
193
    this.currentInterface.accessParams['set'] = valset;
193 194
    this.currentInterface.desiredCompatibilityLevel = compLvl;
194 195
    this.currentInterface.compliance = compLvl;
195 196
    this.currentInterface.typology = this.currentRepository.datasourceClass;
......
220 221
    this.currentInterface = new RepositoryInterface();
221 222
    this.currentInterface.baseUrl = encodeURIComponent(baseUrl);
222 223
    this.currentInterface.accessSet = valset;
224
    this.currentInterface.accessParams = {'set': valset};
223 225
    this.currentInterface.desiredCompatibilityLevel = compLvl;
224 226
    this.currentInterface.compliance = compLvl;
225 227
    this.currentInterface.typology = this.currentRepository.datasourceClass;

Also available in: Unified diff