Fix overflow issue with text commit hash

6282088e215c8d15cf4fcbc0dc3b0b241c722839

Tucker McKnight | Wed Dec 31 2025

Fix overflow issue with text commit hash

Also make them scroll so that users can see the full text
if they need to, instead of using overflow: hidden.
frontend/main.js:26
Before
26
      <span class='clone overflow-hidden input-group-text'>${url || window.cloneUrl}</span>
After
26
      <span class='clone overflow-scroll input-group-text'>${url || window.cloneUrl}</span>
js_templates/commit.ts:11
Before
11
12
          <div class="input-group mb-2">
            <span class="font-monospace input-group-text border-info text-white text-bg-dark">${data.patchInfo.commit.hash}</span>
After
11
12
          <div class="input-group mb-2 flex-nowrap">
            <span class="font-monospace input-group-text border-info text-white text-bg-dark overflow-scroll">${data.patchInfo.commit.hash}</span>