alpha
Login
or
Join now
atpota.to
/
cred.blue
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix issues
author
damedotblog
date
1 year ago
(Apr 1, 2025, 11:06 PM -0400)
commit
eb2e1eff
eb2e1eff373a46a38dab2ad7167fa49b08346ef7
parent
2e8a0016
2e8a001631fff6d0922e3ef11d347c9d1730e86a
+4
-4
2 changed files
Expand all
Collapse all
Unified
Split
src
components
CollectionsFeed
CollectionsFeed.js
FeedTimeline.js
+2
-2
src/components/CollectionsFeed/CollectionsFeed.js
Reviewed
···
633
633
<span>DID: {did}</span>
634
634
<button
635
635
className="copy-button"
636
636
-
onClick={() => {
636
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
657
-
onClick={() => {
657
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
Reviewed
···
394
394
<span>Record Data</span>
395
395
<button
396
396
className="copy-json-button"
397
397
-
onClick={() => {
397
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
425
-
onClick={() => {
425
425
+
onClick={(event) => {
426
426
navigator.clipboard.writeText(selectedRecord.uri);
427
427
// Show temporary success message
428
428
const button = event.currentTarget;