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>
|
<Th>{__("Type")}</Th>
|
||||||
<SortableTh field="SOURCE">{__("Source")}</SortableTh>
|
<SortableTh field="SOURCE">{__("Source")}</SortableTh>
|
||||||
<SortableTh field="LAST_MATCHED_AT">{__("Last Matched")}</SortableTh>
|
<SortableTh field="LAST_MATCHED_AT">{__("Last Matched")}</SortableTh>
|
||||||
<SortableTh field="UPDATED_AT">{__("Updated")}</SortableTh>
|
|
||||||
<Th className="w-28" />
|
<Th className="w-28" />
|
||||||
</Tr>
|
</Tr>
|
||||||
</Thead>
|
</Thead>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
// PERFORMANCE OF THIS SOFTWARE.
|
// PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
import { EyeIcon, EyeSlashIcon } from "@phosphor-icons/react";
|
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 { useTranslate } from "@probo/i18n";
|
||||||
import {
|
import {
|
||||||
Badge,
|
Badge,
|
||||||
@@ -53,7 +53,6 @@ const trackerPatternFragment = graphql`
|
|||||||
maxAgeSeconds
|
maxAgeSeconds
|
||||||
excluded
|
excluded
|
||||||
lastMatchedAt
|
lastMatchedAt
|
||||||
updatedAt
|
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -328,11 +327,6 @@ export function TrackerPatternRow({ patternKey, connectionId }: TrackerPatternRo
|
|||||||
)
|
)
|
||||||
: <span className="text-txt-tertiary">-</span>}
|
: <span className="text-txt-tertiary">-</span>}
|
||||||
</Td>
|
</Td>
|
||||||
<Td>
|
|
||||||
<time dateTime={pattern.updatedAt}>
|
|
||||||
{formatDate(pattern.updatedAt)}
|
|
||||||
</time>
|
|
||||||
</Td>
|
|
||||||
<Td>
|
<Td>
|
||||||
<div className="flex items-center gap-1">
|
<div className="flex items-center gap-1">
|
||||||
<button
|
<button
|
||||||
|
|||||||
Reference in New Issue
Block a user