Skip to content

Commit 5e10186

Browse files
authored
Merge branch 'main' into fix-tics
2 parents 931864c + ab89a2a commit 5e10186

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

konf/site.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ env: &env
4141
key: github-snapcraft-user-token
4242
name: snapcraft-io
4343

44+
- name: GITHUB_SNAPCRAFT_BOT_USER_TOKEN
45+
secretKeyRef:
46+
key: github-snapcraft-bot-user-token
47+
name: snapcraft-io
48+
4449
- name: GITHUB_WEBHOOK_SECRET
4550
secretKeyRef:
4651
key: github-webhook-secret
@@ -80,7 +85,7 @@ env: &env
8085
secretKeyRef:
8186
key: discourse-api-username
8287
name: snapcraft-io
83-
88+
8489
- name: DNS_VERIFICATION_SALT
8590
secretKeyRef:
8691
key: dns-verification-salt

static/js/publisher/components/PublishedSnapList/PublishedSnapList.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,14 @@ function PublishedSnapList({
7979

8080
return (
8181
<Strip element="section" shallow>
82-
<div className="u-fixed-width">
83-
<h2 className="p-heading--4 u-float-left">My published snaps</h2>
84-
</div>
8582
{isEmpty && <EmptySnapList />}
8683

84+
{!isEmpty && (
85+
<div className="u-fixed-width">
86+
<h2 className="p-heading--4">My published snaps</h2>
87+
</div>
88+
)}
89+
8790
{shouldShowNewSnapNotification && <NewSnapNotification snap={snaps[0]} />}
8891

8992
{snaps.length > 0 && (

0 commit comments

Comments
 (0)