Remove tracker pattern row updatedAt column
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
@@ -203,7 +203,6 @@ export default function CookieBannerTrackersPage({
|
||||
<Th>{__("Type")}</Th>
|
||||
<SortableTh field="SOURCE">{__("Source")}</SortableTh>
|
||||
<SortableTh field="LAST_MATCHED_AT">{__("Last Matched")}</SortableTh>
|
||||
<SortableTh field="UPDATED_AT">{__("Updated")}</SortableTh>
|
||||
<Th className="w-28" />
|
||||
</Tr>
|
||||
</Thead>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
// PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
import { EyeIcon, EyeSlashIcon } from "@phosphor-icons/react";
|
||||
import { formatDate, formatError, type GraphQLError } from "@probo/helpers";
|
||||
import { formatError, type GraphQLError } from "@probo/helpers";
|
||||
import { useTranslate } from "@probo/i18n";
|
||||
import {
|
||||
Badge,
|
||||
@@ -53,7 +53,6 @@ const trackerPatternFragment = graphql`
|
||||
maxAgeSeconds
|
||||
excluded
|
||||
lastMatchedAt
|
||||
updatedAt
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -328,11 +327,6 @@ export function TrackerPatternRow({ patternKey, connectionId }: TrackerPatternRo
|
||||
)
|
||||
: <span className="text-txt-tertiary">-</span>}
|
||||
</Td>
|
||||
<Td>
|
||||
<time dateTime={pattern.updatedAt}>
|
||||
{formatDate(pattern.updatedAt)}
|
||||
</time>
|
||||
</Td>
|
||||
<Td>
|
||||
<div className="flex items-center gap-1">
|
||||
<button
|
||||
|
||||
Reference in New Issue
Block a user