Remove TODO for adding tags to commit page

717aa8e4e8bbce3e90b2f8023ee6ddfc3700d116

Tucker McKnight <tmcknight@instructure.com> | Mon Sep 07 2026

Remove TODO for adding tags to commit page

Moved this task to git-bug da1c84a
js_templates/commits.ts:99
Before
98
99
100
101
102
103
104
          m('div', {class: "col-md-auto col-12 commit-date"}, [
            m('span', {class: "date mb-1 me-2 font-monospace d-inline-block text-nowrap"}, date(commit.date).split(' ').slice(1).join(' ')),
            commit.isMerge ? m('span', {class: 'badge rounded-pill bg-warning me-1'}, 'merge') : null,
            // TODO: if this commit has any tags, list them here
            // m('span', {class: "bg-danger mb-1 badge rounded-pill d-inline-block"}, 'v1.2')
          ]),
          m('div', { class: 'col' }, [
            m('div', { class: 'row' }, [
After
98
99
100


101
102
          m('div', {class: "col-md-auto col-12 commit-date"}, [
            m('span', {class: "date mb-1 me-2 font-monospace d-inline-block text-nowrap"}, date(commit.date).split(' ').slice(1).join(' ')),
            commit.isMerge ? m('span', {class: 'badge rounded-pill bg-warning me-1'}, 'merge') : null,
⁣
⁣
          ]),
          m('div', { class: 'col' }, [
            m('div', { class: 'row' }, [
package.json:13
Before
12
13
14










15
16
17
    "css:watch": "npx sass --watch scss/:dist/css/",
    "test": "vitest"
  },
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
  "keywords": ["buildawesome-plugin", "eleventy-plugin", "git", "static", "site", "html", "source control", "vcs", "blog"],
  "homepage": "https://tuckerm.us/repos/git-static-site-ui",
  "author": "Tucker McKnight",
  "repository": {
After
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
    "css:watch": "npx sass --watch scss/:dist/css/",
    "test": "vitest"
  },
  "keywords": [
    "buildawesome-plugin",
    "eleventy-plugin",
    "git",
    "static",
    "site",
    "html",
    "source control",
    "vcs",
    "blog"
  ],
  "homepage": "https://tuckerm.us/repos/git-static-site-ui",
  "author": "Tucker McKnight",
  "repository": {