File tree 6 files changed +76
-13
lines changed 6 files changed +76
-13
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,17 @@ export function BillingAccountSelector(props: { onSelected?: () => void }) {
96
96
{ teamsAvailableForAttribution === undefined && < Spinner className = "m-2 h-5 w-5 animate-spin" /> }
97
97
{ teamsAvailableForAttribution && (
98
98
< div >
99
- < p > Associate usage without a project to the billing account below.</ p >
99
+ < h2 className = "text-gray-500" >
100
+ Associate usage without a project to the billing account below.{ " " }
101
+ < a
102
+ className = "gp-link"
103
+ href = "https://www.gitpod.io/docs/configure/billing"
104
+ target = "_blank"
105
+ rel = "noreferrer"
106
+ >
107
+ Learn more
108
+ </ a >
109
+ </ h2 >
100
110
< div className = "mt-4 max-w-2xl grid grid-cols-3 gap-3" >
101
111
< SelectableCardSolid
102
112
className = "h-18"
Original file line number Diff line number Diff line change @@ -222,7 +222,17 @@ export default function EnvVars() {
222
222
< div className = "flex items-start sm:justify-between mb-2" >
223
223
< div >
224
224
< h3 > Environment Variables</ h3 >
225
- < h2 className = "text-gray-500" > Variables are used to store information like passwords.</ h2 >
225
+ < h2 className = "text-gray-500" >
226
+ Variables are used to store information like passwords.{ " " }
227
+ < a
228
+ className = "gp-link"
229
+ href = "https://www.gitpod.io/docs/configure/projects/environment-variables#environment-variables"
230
+ target = "_blank"
231
+ rel = "noreferrer"
232
+ >
233
+ Learn more
234
+ </ a >
235
+ </ h2 >
226
236
</ div >
227
237
{ envVars . length !== 0 ? (
228
238
< div className = "mt-3 flex mt-0" >
@@ -238,13 +248,7 @@ export default function EnvVars() {
238
248
< h3 className = "text-center pb-3 text-gray-500 dark:text-gray-400" > No Environment Variables</ h3 >
239
249
< div className = "text-center pb-6 text-gray-500" >
240
250
In addition to user-specific environment variables you can also pass variables through a
241
- workspace creation URL.{ " " }
242
- < a
243
- className = "gp-link"
244
- href = "https://www.gitpod.io/docs/environment-variables/#using-the-account-settings"
245
- >
246
- Learn more
247
- </ a >
251
+ workspace creation URL.
248
252
</ div >
249
253
< button onClick = { add } > New Variable</ button >
250
254
</ div >
Original file line number Diff line number Diff line change @@ -320,7 +320,17 @@ function GitProviders() {
320
320
) }
321
321
322
322
< h3 > Git Providers</ h3 >
323
- < h2 > Manage permissions for Git providers.</ h2 >
323
+ < h2 className = "text-gray-500" >
324
+ Manage permissions for Git providers.{ " " }
325
+ < a
326
+ className = "gp-link"
327
+ href = "https://www.gitpod.io/docs/configure/authentication"
328
+ target = "_blank"
329
+ rel = "noreferrer"
330
+ >
331
+ Learn more
332
+ </ a >
333
+ </ h2 >
324
334
< ItemsList className = "pt-6" >
325
335
{ authProviders &&
326
336
authProviders . map ( ( ap ) => (
Original file line number Diff line number Diff line change @@ -156,7 +156,26 @@ function ListAccessTokensView() {
156
156
</ a >
157
157
</ PillLabel >
158
158
</ h3 >
159
- < h2 className = "text-gray-500" > Create or regenerate access tokens.</ h2 >
159
+ < h2 className = "text-gray-500" >
160
+ Create or regenerate access tokens.{ " " }
161
+ < a
162
+ className = "gp-link"
163
+ href = "https://www.gitpod.io/docs/configure/user-settings/access-tokens"
164
+ target = "_blank"
165
+ rel = "noreferrer"
166
+ >
167
+ Learn more
168
+ </ a >
169
+ ·
170
+ < a
171
+ className = "gp-link"
172
+ href = "https://github.com/gitpod-io/gitpod/issues/15433"
173
+ target = "_blank"
174
+ rel = "noreferrer"
175
+ >
176
+ Send feedback
177
+ </ a >
178
+ </ h2 >
160
179
</ div >
161
180
{ tokens . length > 0 && (
162
181
< Link to = { settingsPathPersonalAccessTokenCreate } >
Original file line number Diff line number Diff line change @@ -51,7 +51,17 @@ export default function Preferences() {
51
51
< div >
52
52
< PageWithSettingsSubMenu title = "Preferences" subtitle = "Configure user preferences." >
53
53
< h3 > Editor</ h3 >
54
- < p className = "text-base text-gray-500 dark:text-gray-400" > Choose the editor for opening workspaces.</ p >
54
+ < p className = "text-base text-gray-500 dark:text-gray-400" >
55
+ Choose the editor for opening workspaces.{ " " }
56
+ < a
57
+ className = "gp-link"
58
+ href = "https://www.gitpod.io/docs/references/ides-and-editors"
59
+ target = "_blank"
60
+ rel = "noreferrer"
61
+ >
62
+ Learn more
63
+ </ a >
64
+ </ p >
55
65
< SelectIDE location = "preferences" />
56
66
< h3 className = "mt-12" > Theme</ h3 >
57
67
< p className = "text-base text-gray-500 dark:text-gray-400" > Early bird or night owl? Choose your side.</ p >
Original file line number Diff line number Diff line change @@ -188,7 +188,17 @@ export default function SSHKeys() {
188
188
< div className = "flex items-start sm:justify-between mb-2" >
189
189
< div >
190
190
< h3 > SSH Keys</ h3 >
191
- < h2 className = "text-gray-500" > Create and manage SSH keys.</ h2 >
191
+ < h2 className = "text-gray-500" >
192
+ Create and manage SSH keys.{ " " }
193
+ < a
194
+ className = "gp-link"
195
+ href = "https://www.gitpod.io/docs/configure/user-settings/ssh"
196
+ target = "_blank"
197
+ rel = "noreferrer"
198
+ >
199
+ Learn more
200
+ </ a >
201
+ </ h2 >
192
202
</ div >
193
203
{ dataList . length !== 0 ? (
194
204
< div className = "mt-3 flex" >
You can’t perform that action at this time.
0 commit comments