@@ -280,8 +280,8 @@ export class BrowserProfilesProfilePage extends BtrixElement {
280280
281281 private readonly renderPage = ( ) => {
282282 return html `
283- < div class ="mt-1 grid grid-cols-7 gap-7 ">
284- < div class ="col-span-full flex flex-col gap-7 lg:col-span-5 ">
283+ < div class ="mt-2 grid grid-cols-7 gap-7 ">
284+ < div class ="col-span-full flex flex-col gap-7 lg:col-span-5 lg:gap-10 ">
285285 ${ this . renderProfile ( ) } ${ this . renderUsage ( ) }
286286 </ div >
287287
@@ -300,7 +300,7 @@ export class BrowserProfilesProfilePage extends BtrixElement {
300300 this . browserIdTask . value ;
301301
302302 return panel ( {
303- heading : msg ( "Visited Sites" ) ,
303+ heading : msg ( "Configured Sites" ) ,
304304 actions : this . appState . isCrawler
305305 ? html `< sl-tooltip content =${ msg ( "Configure Profile" ) } >
306306 < sl-icon-button
@@ -351,12 +351,16 @@ export class BrowserProfilesProfilePage extends BtrixElement {
351351 const origins = ( profile : Profile ) =>
352352 profile . origins . map (
353353 ( origin ) => html `
354- < li class ="flex items-center gap-2 ">
354+ < li class ="flex items-center gap-1 ">
355355 < div
356356 class ="flex flex-1 items-center gap-2 overflow-hidden border-r "
357357 >
358358 < div class ="border-r p-1 ">
359- < btrix-copy-button .value =${ origin } placement ="left">
359+ < btrix-copy-button
360+ content =${ msg ( "Copy URL" ) }
361+ .value =${ origin }
362+ placement="left"
363+ >
360364 </ btrix-copy-button >
361365 </ div >
362366 < btrix-code
@@ -488,7 +492,7 @@ export class BrowserProfilesProfilePage extends BtrixElement {
488492 html `< sl-skeleton class ="h-36 " effect ="sheen "> </ sl-skeleton > ` ;
489493
490494 return panel ( {
491- heading : msg ( "Usage " ) ,
495+ heading : msg ( "Related Workflows " ) ,
492496 body : when (
493497 this . profile ,
494498 ( profile ) =>
@@ -561,7 +565,7 @@ export class BrowserProfilesProfilePage extends BtrixElement {
561565 const failedNotLoggedInState = "failed_not_logged_in" satisfies CrawlState ;
562566
563567 return html `
564- < div class ="mb-3 rounded-lg border bg-neutral-50 px-6 py-3 ">
568+ < div class ="mb-3 rounded-lg border bg-neutral-50 px-5 py-3 ">
565569 < div class ="flex flex-wrap items-center gap-2 ">
566570 < span class ="whitespace-nowrap text-sm text-neutral-500 ">
567571 ${ msg ( "Filter by:" ) }
0 commit comments