alpha
Login
or
Join now
danielroe.dev
/
synchub.to
Star
1
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
mirror your GitHub repos to tangled.org automatically
Star
1
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: link to github install
author
Daniel Roe
date
1 week ago
(Jun 13, 2026, 1:34 PM +0100)
commit
a259ec92
a259ec920c3834c45181e84b8cacf2b746ee54d7
parent
b31645cb
b31645cbeec4eae562926df89564cef36187a23c
+9
1 changed file
Expand all
Collapse all
Unified
Split
app
pages
dashboard.vue
+9
app/pages/dashboard.vue
Reviewed
···
265
265
{{ data.installation.accountLogin }}
266
266
<span class="muted">({{ data.installation.accountType.toLowerCase() }}, install #{{ data.installation.id }})</span>
267
267
<span v-if="data.installation.suspendedAt" class="badge badge-error">suspended</span>
268
268
+
<a class="config-link" :href="`https://github.com/settings/installations/${data.installation.id}`" target="_blank" rel="noopener noreferrer">configure on GitHub ↗</a>
268
269
</dd>
269
270
</template>
270
271
<template v-else>
···
585
586
margin: 0;
586
587
overflow-wrap: anywhere;
587
588
min-width: 0;
589
589
+
}
590
590
+
591
591
+
.config-link {
592
592
+
display: inline-block;
593
593
+
margin-left: var(--space-xs);
594
594
+
font-family: var(--font-mono);
595
595
+
font-size: var(--text-xs);
596
596
+
white-space: nowrap;
588
597
}
589
598
590
599
code {