16159: Merge branch 'master' into 16159-logout-request-with-token
[arvados.git] / src / views-components / resource-properties-form / property-chip.tsx
index f25deb70ebd34222f49042adcab322433ffd7eb7..b9a13fbbca52dbe3ab1f3543eb9f0ae099b33289 100644 (file)
@@ -51,8 +51,8 @@ export const PropertyChipComponent = connect(mapStateToProps, mapDispatchToProps
     }
 );
 
-export const getPropertyChip = (k:string, v:string, handleDelete:any, className:string) =>
+export const getPropertyChip = (k: string, v: string, handleDelete: any, className: string) =>
     <PropertyChipComponent
-        key={k} className={className}
+        key={`${k}-${v}`} className={className}
         onDelete={handleDelete}
         propKey={k} propValue={v} />;