|
|
@@ -1,10 +1,10 @@
|
|
1
|
1
|
/** @module card/card */
|
|
2
|
2
|
|
|
3
|
3
|
const DEFAULT_ABOUT =
|
|
4
|
|
- 'A really really really really really. Really really really really really really really really really really really long bio.'
|
|
|
4
|
+ 'Hello! My name is L.L. and I am a nurse from New York. I have been in the healthcare industry for over 6 years.'
|
|
5
|
5
|
|
|
6
|
6
|
class SummaryGroup {
|
|
7
|
|
- constructor() {
|
|
|
7
|
+ constructor () {
|
|
8
|
8
|
this.about = {
|
|
9
|
9
|
tab: null,
|
|
10
|
10
|
matchPerc: null,
|
|
|
@@ -40,7 +40,7 @@ class SummaryGroup {
|
|
40
|
40
|
}
|
|
41
|
41
|
|
|
42
|
42
|
class Aspect {
|
|
43
|
|
- constructor({ name, labels, percentage = 50 }) {
|
|
|
43
|
+ constructor ({ name, labels, percentage = 50 }) {
|
|
44
|
44
|
this.name = name
|
|
45
|
45
|
this.labels = labels
|
|
46
|
46
|
this.percentage = percentage
|
|
|
@@ -54,7 +54,7 @@ class Aspect {
|
|
54
|
54
|
* card facade
|
|
55
|
55
|
*/
|
|
56
|
56
|
class Card {
|
|
57
|
|
- constructor({ pid, name, role }) {
|
|
|
57
|
+ constructor ({ pid, name, role }) {
|
|
58
|
58
|
this.pid = pid
|
|
59
|
59
|
|
|
60
|
60
|
/** Fields */
|