diff --git a/ui/src/components/ActiveTasksTable.tsx b/ui/src/components/ActiveTasksTable.tsx index 09aeb0d..0559962 100644 --- a/ui/src/components/ActiveTasksTable.tsx +++ b/ui/src/components/ActiveTasksTable.tsx @@ -314,17 +314,16 @@ function Row(props: RowProps) {
{uuidPrefix(task.id)} - + { e.stopPropagation() navigator.clipboard.writeText(task.id) - } - } + }} size="small" className={classes.copyButton} > - +
diff --git a/ui/src/components/ArchivedTasksTable.tsx b/ui/src/components/ArchivedTasksTable.tsx index 3e81d04..1fc81f6 100644 --- a/ui/src/components/ArchivedTasksTable.tsx +++ b/ui/src/components/ArchivedTasksTable.tsx @@ -353,7 +353,7 @@ function Row(props: RowProps) {
{uuidPrefix(task.id)} - + { e.stopPropagation() diff --git a/ui/src/components/CompletedTasksTable.tsx b/ui/src/components/CompletedTasksTable.tsx index 9d0c239..a4d9473 100644 --- a/ui/src/components/CompletedTasksTable.tsx +++ b/ui/src/components/CompletedTasksTable.tsx @@ -322,7 +322,7 @@ function Row(props: RowProps) {
{uuidPrefix(task.id)} - + { e.stopPropagation() @@ -332,7 +332,7 @@ function Row(props: RowProps) { size="small" className={classes.copyButton} > - +
diff --git a/ui/src/components/PendingTasksTable.tsx b/ui/src/components/PendingTasksTable.tsx index b6253c7..1cd4cc4 100644 --- a/ui/src/components/PendingTasksTable.tsx +++ b/ui/src/components/PendingTasksTable.tsx @@ -350,15 +350,15 @@ function Row(props: RowProps) { />
- +
{uuidPrefix(task.id)} - + { + onClick={(e) => { e.stopPropagation() - navigator.clipboard.writeText(task.id) } - } + navigator.clipboard.writeText(task.id) + }} size="small" className={classes.copyButton} > diff --git a/ui/src/components/RetryTasksTable.tsx b/ui/src/components/RetryTasksTable.tsx index 2580e83..c16256e 100644 --- a/ui/src/components/RetryTasksTable.tsx +++ b/ui/src/components/RetryTasksTable.tsx @@ -382,13 +382,12 @@ function Row(props: RowProps) {
{uuidPrefix(task.id)} - + { e.stopPropagation() navigator.clipboard.writeText(task.id) - } - } + }} size="small" className={classes.copyButton} > diff --git a/ui/src/components/ScheduledTasksTable.tsx b/ui/src/components/ScheduledTasksTable.tsx index 9303b04..37f8b22 100644 --- a/ui/src/components/ScheduledTasksTable.tsx +++ b/ui/src/components/ScheduledTasksTable.tsx @@ -391,13 +391,12 @@ function Row(props: RowProps) {
{uuidPrefix(task.id)} - + { e.stopPropagation() navigator.clipboard.writeText(task.id) - } - } + }} size="small" className={classes.copyButton} >