Compare commits

..

No commits in common. "8a2a89b33022abc7c923e48a1edb0c8d26580d38" and "440ec936b928b84ba808e0519d08de351eae8f38" have entirely different histories.

2 changed files with 2 additions and 36 deletions

View File

@ -715,7 +715,7 @@
</button>
<div class="header-dot" aria-hidden="true"></div>
<span class="header-title" id="headerTitle">Board</span>
<a id="headerAppLink" href="#" target="_blank" rel="noopener noreferrer" style="display:none;font-size:11px;color:var(--text3);text-decoration:none;margin-left:6px;" onmouseover="this.style.color='var(--accent)'" onmouseout="this.style.color='var(--text3)'"></a>
<a id="headerAppLink" href="#" target="_blank" rel="noopener" style="display:none;font-size:11px;color:var(--text3);text-decoration:none;margin-left:6px;" onmouseover="this.style.color='var(--accent)'" onmouseout="this.style.color='var(--text3)'"></a>
</div>
<button class="icon-btn" id="addHeaderBtn" aria-label="タスクを追加">
<i data-lucide="plus" style="width:18px;height:18px;stroke-width:2"></i>
@ -1073,7 +1073,7 @@ function boardCard(t, showApp = true) {
const note = (t.status === 'hold' && t.note)
? `<div class="task-hold-note">${esc(t.note)}</div>` : '';
const commit = t.commit
? `<a class="task-commit" href="https://github.com/posimai/${t.appId}/commit/${t.commit}" target="_blank" rel="noopener noreferrer">${t.commit.slice(0,7)}</a>` : '';
? `<a class="task-commit" href="https://github.com/posimai/${t.appId}/commit/${t.commit}" target="_blank" rel="noopener">${t.commit.slice(0,7)}</a>` : '';
const date = (done && t.done_at) ? `<span class="task-date">${t.done_at}</span>` : '';
const appChip = showApp ? `<div class="task-app-chip">${shortName(t.appId)}</div>` : '';
return `<div class="task-card${done?' task-done':''}" data-id="${t.id}" data-app="${t.appId}" draggable="true" role="button" tabindex="0">

View File

@ -1,34 +0,0 @@
{
"headers": [
{
"source": "/sw.js",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=0, must-revalidate"
}
]
},
{
"source": "/(.*)",
"headers": [
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-Frame-Options",
"value": "DENY"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
}
]
}
]
}