Skip to content

Commit e40a0f5

Browse files
committed
update copy
1 parent e6d647f commit e40a0f5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/src/pages/org/archived-item-qa/archived-item-qa.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,11 +425,11 @@ export class ArchivedItemQA extends BtrixElement {
425425
426426
<article class="qa-grid grid min-h-screen gap-x-6 gap-y-0 lg:snap-start">
427427
<header
428-
class="grid--header flex flex-wrap items-center justify-between gap-1 border-b py-2"
428+
class="grid--header flex flex-wrap items-center justify-between gap-2 border-b py-2 md:flex-nowrap"
429429
>
430430
<div class="flex items-center gap-2 overflow-hidden">
431431
<h1
432-
class="flex min-w-32 flex-1 flex-shrink-0 gap-1 truncate text-base font-semibold leading-tight"
432+
class="flex min-w-32 max-w-prose flex-1 flex-shrink-0 gap-1 truncate text-base font-semibold leading-tight"
433433
>
434434
${msg("Review")} ${itemName}
435435
</h1>
@@ -565,7 +565,7 @@ export class ArchivedItemQA extends BtrixElement {
565565
() =>
566566
html`<btrix-popover
567567
content=${msg(
568-
"Screenshot, text, and resource quality metrics are only available for analyzed crawls. Run analysis to view and compare all QA metrics.",
568+
"Screenshot, text, and resource comparison views are only available for analyzed crawls. Run analysis to view and compare all quality metrics.",
569569
)}
570570
>
571571
<div

frontend/src/utils/crawler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function renderName(item: ArchivedItem | Workflow, className?: string) {
6262
const remainder = item.seedCount - 1;
6363
let nameSuffix: string | TemplateResult<1> = "";
6464
if (remainder) {
65-
nameSuffix = html`<div class="ml-1">
65+
nameSuffix = html`<div class="ml-1 text-neutral-500">
6666
+${localize.number(remainder, { notation: "compact" })}
6767
${pluralOf("URLs", remainder)}
6868
</div>`;

0 commit comments

Comments
 (0)