Project

General

Profile

« Previous | Next » 

Revision 57697

[Monitor Dashboard]: 1. Change inputs to materials. 2. Add fonts. 3. Add uikit.js on index 4. Add reorder functionality on indicators. 5. Fix height of header to 70px

View differences:

stakeholder.ts
290 290
  isDefault: boolean;
291 291
  categories: Category[];
292 292

  
293
  constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean) {
293
  constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean, isDefault: boolean = true) {
294 294
    this._id = null;
295 295
    this.name = name;
296 296
    this.description = description;
297 297
    this.alias = alias;
298 298
    this.isActive = isActive;
299 299
    this.isPublic = isPublic;
300
    this.isDefault = isDefault;
300 301
    this.categories = [];
301 302
  }
302 303
}
......
312 313
  isDefault: boolean;
313 314
  subCategories: SubCategory[];
314 315

  
315
  constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean) {
316
  constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean, isDefault: boolean = true) {
316 317
    this._id = null;
317 318
    this.name = name;
318 319
    this.description = description;
319 320
    this.alias = alias;
320 321
    this.isActive = isActive;
321 322
    this.isPublic = isPublic;
323
    this.isDefault = isDefault;
322 324
    this.subCategories = [];
323 325
  }
324 326
}
......
334 336
  charts: Indicator[];
335 337
  numbers: Indicator[];
336 338

  
337
  constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean) {
339
  constructor(name: string, description: string, alias: string, isActive: boolean, isPublic: boolean, isDefault: boolean = true) {
338 340
    this._id = null;
339 341
    this.name = name;
340 342
    this.description = description;
341 343
    this.alias = alias;
342 344
    this.isActive = isActive;
343 345
    this.isPublic = isPublic;
346
    this.isDefault = isDefault;
344 347
    this.charts = [];
345 348
    this.numbers = [];
346 349
  }

Also available in: Unified diff