This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix issues

+4 -4
+2 -2
src/components/CollectionsFeed/CollectionsFeed.js
··· 633 633 <span>DID: {did}</span> 634 634 <button 635 635 className="copy-button" 636 - onClick={() => { 636 + onClick={(event) => { 637 637 navigator.clipboard.writeText(did); 638 638 // Show temporary success message 639 639 const button = event.currentTarget; ··· 654 654 <span>Service: {serviceEndpoint}</span> 655 655 <button 656 656 className="copy-button" 657 - onClick={() => { 657 + onClick={(event) => { 658 658 navigator.clipboard.writeText(serviceEndpoint); 659 659 // Show temporary success message 660 660 const button = event.currentTarget;
+2 -2
src/components/CollectionsFeed/FeedTimeline.js
··· 394 394 <span>Record Data</span> 395 395 <button 396 396 className="copy-json-button" 397 - onClick={() => { 397 + onClick={(event) => { 398 398 navigator.clipboard.writeText(JSON.stringify(modalData, null, 2)); 399 399 // Show temporary success message 400 400 const button = event.currentTarget; ··· 422 422 <span>URI: {selectedRecord.uri}</span> 423 423 <button 424 424 className="copy-button" 425 - onClick={() => { 425 + onClick={(event) => { 426 426 navigator.clipboard.writeText(selectedRecord.uri); 427 427 // Show temporary success message 428 428 const button = event.currentTarget;