File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
js/packages/binderhub-react-components Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @jupyterhub/binderhub-react-components" ,
3
- "version" : " 0.1.0 " ,
3
+ "version" : " 0.1.1 " ,
4
4
"description" : " Collection of React components for BinderHub" ,
5
5
"exports" : {
6
6
"./*.jsx" : " ./src/*.jsx"
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ function ImageLogs({
140
140
< div className = "card-header d-flex align-items-baseline" >
141
141
< span className = "flex-fill" > Build Logs</ span >
142
142
< button
143
+ id = "btn-show-log"
143
144
ref = { toggleLogsButton }
144
145
className = "btn btn-link"
145
146
type = "button"
@@ -151,6 +152,7 @@ function ImageLogs({
151
152
{ logsVisible ? "hide" : "show" }
152
153
</ button >
153
154
< button
155
+ id = "btn-view-raw-log"
154
156
className = "btn btn-link"
155
157
type = "button"
156
158
onClick = { ( ev ) => {
Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ export function LinkGenerator({
238
238
</ div >
239
239
< div className = "col-2" >
240
240
< button
241
+ id = "btn-launch"
241
242
className = "btn btn-primary col-2 w-100"
242
243
disabled = { isLaunching }
243
244
onClick = { ( ) => setIsLaunching ( true ) }
@@ -259,7 +260,7 @@ export function LinkGenerator({
259
260
< button
260
261
className = "btn btn-outline-secondary border border-2 border-start-0"
261
262
type = "button"
262
- id = "copy-url"
263
+ id = "btn- copy-url"
263
264
onClick = { ( ) => copy ( launchUrl ) }
264
265
disabled = { launchUrl === "" }
265
266
>
@@ -272,6 +273,7 @@ export function LinkGenerator({
272
273
< div className = "card-header d-flex align-items-baseline" >
273
274
< span className = "flex-fill" > Badges for your README</ span >
274
275
< button
276
+ id = "btn-show-badge"
275
277
className = "btn btn-link"
276
278
type = "button"
277
279
aria-controls = "badge-container"
@@ -333,7 +335,7 @@ export function LinkGenerator({
333
335
< button
334
336
className = "btn btn-outline-secondary"
335
337
type = "button"
336
- id = "copy-url "
338
+ id = "btn- copy-badge "
337
339
onClick = { ( ) => copy ( badgeMarkup ) }
338
340
disabled = { badgeMarkup === "" }
339
341
>
You can’t perform that action at this time.
0 commit comments