playbook_ui 5.2.0.pre.alpha4 → 5.2.0.pre.alpha5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: deff573c66ff96ffba5a76accc5161a615b6f2f4bfe3dc9da41fe4eaa45b0465
4
- data.tar.gz: a20b334091346d3c44cfc54d7aea8d55766ec6ce01e58b39ac406dcc442bbb64
3
+ metadata.gz: 51432c5454852ca092daa029064a6c3506b424639455d97854c4155e25bae2cd
4
+ data.tar.gz: 5872c8bea8b04af9ea6de5c89f8f0c919105819e8a6c5620de59f201bc0ceb03
5
5
  SHA512:
6
- metadata.gz: 34f69a1aaa64a0bcfa0d782c176e30d51bb9ca2608bab2ae272dfe91040d5b888ce1a147acd391c8b35dc5f385662fc81def7c8194a15f174eee2326032e6bca
7
- data.tar.gz: 18befa9f294667168f62d4b316f923981c3361b859ff4dffa8c42127da7785a1d49f05795f4e974f1ca6eb905ca4e5ced006b3f79095f32ce063af978b77f4ed
6
+ metadata.gz: 459cf49daaf4905570339641311fb657a7581f7ffd9b3b89a8c90c51534b0ebcd578894125b31c9e8653c3f8a7a7e805b536349c8d60d297b0e95a8ce1946d11
7
+ data.tar.gz: e5a13544b32979a37f291641d3c469a765dbd0db0e9a5b2e81bf03c2dd85d960ada4c76812e85ffc66c285c4c20ffdfb495de0ca6281d64a346200b8be327ffb
@@ -73,22 +73,23 @@ const PersonContact = (props: PersonContactProps) => {
73
73
  contactDetail={contactObject.contactDetail}
74
74
  contactType={contactObject.contactType}
75
75
  contactValue={contactObject.contactValue}
76
- key={index}
76
+ key={`valid-contact-${index}`}
77
77
  />
78
- ))}
78
+ ))}
79
79
  {wrongContacts().map((contactObject, index) => (
80
- <>
80
+ <div key={`wrong-contact-caption-wrapper-${index}`}>
81
81
  <Caption
82
82
  className="wrong_numbers"
83
+ key={`wrong-contact-caption-${index}`}
83
84
  text="wrong number"
84
85
  />
85
86
  <Contact
86
87
  contactType={contactObject.contactType}
87
88
  contactValue={contactObject.contactValue}
88
- key={index}
89
+ key={`wrong-contact-${index}`}
89
90
  />
90
- </>
91
- ))}
91
+ </div>
92
+ ))}
92
93
  </div>
93
94
  )
94
95
  }
@@ -5,6 +5,7 @@ const PersonContactWithWrongNumbers = () => {
5
5
  return (
6
6
  <>
7
7
  <PersonContact
8
+ key="person-contact-1"
8
9
  contacts={[
9
10
  {
10
11
  contactType: 'email',
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Playbook
4
- VERSION = "5.2.0-alpha4"
4
+ VERSION = "5.2.0.pre.alpha5"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: playbook_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0.pre.alpha4
4
+ version: 5.2.0.pre.alpha5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Power UX
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-07-08 00:00:00.000000000 Z
12
+ date: 2020-07-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack