alpha
Login
or
Join now
alice.pds.demo.boltless.dev
/
core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
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
2
Pulls
1
Pipelines
web: lint
author
eti
committer
dawn
date
1 week ago
(Jul 31, 2026, 10:57 PM +0300)
commit
b43abb12
b43abb1212d88e6e10dca1c921bc2b99e45295f5
parent
7b9e03db
7b9e03dba7d78c04835704e1b60e509351421b05
change-id
tolttypx
tolttypxpkyylqzymzwrpwrspnuxksxk
+8
-8
5 changed files
Expand all
Collapse all
Unified
Split
web
src
lib
components
comment
Comment.svelte
CommentCard.svelte
reaction
ReactionPicker.svelte
routes
+layout.svelte
[handle]
[repo]
issues
new
+page.svelte
+1
-1
web/src/lib/components/comment/Comment.svelte
View file
Reviewed
···
48
48
<Avatar did={authorDid} handle={authorHandle} size="size-8" tiny />
49
49
</div>
50
50
<div class="min-w-0 flex-1">
51
51
-
<div class="flex flex-wrap items-center gap-x-1 gap-y-1 text-sm text-foreground-subtle">
51
51
+
<div class="flex flex-wrap items-center gap-1 text-sm text-foreground-subtle">
52
52
<span class="text-foreground-default">{authorHandle}</span>
53
53
<span class="before:mr-1 before:content-['·']">
54
54
<TimeAgo value={createdAt} />
+1
-1
web/src/lib/components/comment/CommentCard.svelte
View file
Reviewed
···
156
156
{/snippet}
157
157
158
158
<div
159
159
-
class="overflow-hidden rounded border border-border-default bg-background-canvas bg-background-default/50 drop-shadow-xs"
159
159
+
class="overflow-hidden rounded-sm border border-border-default bg-background-canvas bg-background-default/50 drop-shadow-xs"
160
160
>
161
161
{#snippet selfEditor()}
162
162
{@render commentEditor(thread.self, undefined, undefined)}
+2
-2
web/src/lib/components/reaction/ReactionPicker.svelte
View file
Reviewed
···
61
61
popovertarget={popoverId}
62
62
style={`anchor-name: ${anchorName}`}
63
63
aria-label="Add reaction"
64
64
-
class="py-2 flex cursor-pointer items-center justify-center rounded text-foreground-subtle transition hover:text-foreground-default"
64
64
+
class="flex cursor-pointer items-center justify-center rounded-sm py-2 text-foreground-subtle transition hover:text-foreground-default"
65
65
>
66
66
<SmilePlus class="size-3" />
67
67
</button>
···
71
71
id={popoverId}
72
72
popover="auto"
73
73
style={`position-anchor: ${anchorName}`}
74
74
-
class="inset-auto mt-1 h-fit w-max rounded border border-border-default bg-background-default text-foreground-default shadow-menu [position-area:bottom_center]"
74
74
+
class="inset-auto mt-1 h-fit w-max rounded-sm border border-border-default bg-background-default text-foreground-default shadow-menu [position-area:bottom_center]"
75
75
>
76
76
<div class="grid grid-cols-4 p-1">
77
77
{#each ORDERED_REACTION_KINDS as kind (kind)}
+3
-3
web/src/routes/+layout.svelte
View file
Reviewed
···
32
32
33
33
<div
34
34
class={isAuthShell
35
35
-
? "flex min-h-screen flex-col bg-background-default dark:bg-background-canvas text-foreground-default"
35
35
+
? "flex min-h-screen flex-col bg-background-default text-foreground-default dark:bg-background-canvas"
36
36
: isMarketingShell
37
37
-
? "flex min-h-screen flex-col bg-gradient-to-b from-background-default to-background-canvas text-foreground-default"
37
37
+
? "flex min-h-screen flex-col bg-linear-to-b from-background-default to-background-canvas text-foreground-default"
38
38
: "flex min-h-screen flex-col bg-background-canvas text-foreground-default"}
39
39
>
40
40
{#if !isAuthShell}
···
52
52
</header>
53
53
{/if}
54
54
55
55
-
<main class={isAuthShell ? "flex flex-grow items-center justify-center px-7" : "flex-grow"}>
55
55
+
<main class={isAuthShell ? "flex grow items-center justify-center px-7" : "grow"}>
56
56
{@render children()}
57
57
</main>
58
58
+1
-1
web/src/routes/[handle]/[repo]/issues/new/+page.svelte
View file
Reviewed
···
31
31
</svelte:head>
32
32
33
33
<TabPanel class="py-6">
34
34
-
<h1 class="mb-4 typography-heading-4 font-bold text-foreground-default">Create a new issue</h1>
34
34
+
<h1 class="mb-4 typography-heading-4 text-foreground-default">Create a new issue</h1>
35
35
<IssueForm
36
36
{markup}
37
37
repoDid={data.repo.repoDid ?? ""}