Commit fd78a1d5 authored by Eulyeon Ko's avatar Eulyeon Ko

Change setTimeout interval to 100

a longer timeout interval causes tooltip to flash
"undefined" text.

See:
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/45035#note_430652834
parent 3e81faa9
......@@ -10,7 +10,7 @@ function showTooltip(target, title) {
setTimeout(() => {
target.setAttribute('title', originalTitle);
fixTitle(target);
}, 300);
}, 100);
};
target.setAttribute('title', title);
......
---
title: Fix undefined tooltip text flashing on clipboard icon
merge_request: 45482
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment