Skip to content

Commit 8a7736c

Browse files
committed
improve deprecated scope accessibility
1 parent 043628c commit 8a7736c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/routes/(console)/project-[region]-[project]/overview/api-keys

src/routes/(console)/project-[region]-[project]/overview/api-keys/scopes.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
<Selector.Checkbox
174174
size="s"
175175
id={scope.scope}
176-
label={scope.scope}
176+
label={`${scope.scope}${scope.deprecated ? ' (Deprecated)' : ''}`}
177177
description={scope.description}
178178
bind:checked={activeScopes[scope.scope]} />
179179
{#if scope.deprecated}

0 commit comments

Comments
 (0)