Skip to content

Commit

Permalink
Implemented comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wuall826 committed Aug 30, 2023
1 parent 71672b0 commit 282dec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/util/html-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export function makeCopyButton(text: string): HTMLButtonElement {

export function makeTextDivWithTooltip(text: string, tooltip: string, addCopyButton = false) {
const div = document.createElement("div");
div.className = "flex flex-row"; // Use flexbox to align contents horizontally
div.className = "flex flex-row";

const textSpan = document.createElement("span");
textSpan.appendChild(document.createTextNode(text));
Expand Down

0 comments on commit 282dec6

Please sign in to comment.