We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 182ce47 commit 590be49Copy full SHA for 590be49
information/primarykeys.go
@@ -176,6 +176,7 @@ var RenderUUIDPrimaryKeyRefsHTML = http.HandlerFunc(func(writer http.ResponseWri
176
return !tableRows[i].ForeignKey && tableRows[j].ForeignKey
177
})
178
var b strings.Builder
179
+ fmt.Fprintf(&b, "<h2><button onclick='navigator.clipboard.writeText(%q)'>Copy UUID</button></h2>", pk)
180
for _, tableRow := range tableRows { //#nosec
181
fmt.Fprintf(&b, "<h3>%s</h3>", html.EscapeString(tableRow.Table))
182
fmt.Fprintf(&b, "<table>")
0 commit comments